From 284a2dc210dbf4a576c6bda129fcc400c5410533 Mon Sep 17 00:00:00 2001 From: gfleury Date: Fri, 20 Mar 2020 09:56:41 -0300 Subject: [PATCH] Fix CreateRepository --- default_api.go | 10 ++++++++-- default_api_test.go | 3 ++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/default_api.go b/default_api.go index a7f90d3..ac0608b 100644 --- a/default_api.go +++ b/default_api.go @@ -954,8 +954,14 @@ Create a new repository. Requires an existing project in which this repository w @param projectKey the parent project key @return */ -func (a *DefaultApiService) CreateRepository(projectKey string) (*APIResponse, error) { - return a.CreateRepositoryWithOptions(projectKey, nil, []string{}) +func (a *DefaultApiService) CreateRepository(projectKey string, repository Repository) (*APIResponse, error) { + + localVarPostBody, err := json.Marshal(repository) + if err != nil { + return nil, err + } + + return a.CreateRepositoryWithOptions(projectKey, localVarPostBody, []string{"application/json"}) } func (a *DefaultApiService) CreateRepositoryWithOptions(projectKey string, localVarPostBody interface{}, localVarHTTPContentTypes []string) (*APIResponse, error) { diff --git a/default_api_test.go b/default_api_test.go index e499d18..386b9cd 100644 --- a/default_api_test.go +++ b/default_api_test.go @@ -808,6 +808,7 @@ func TestDefaultApiService_CreateRepository(t *testing.T) { } type args struct { projectKey string + repo Repository } tests := []struct { name string @@ -826,7 +827,7 @@ func TestDefaultApiService_CreateRepository(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, } - got, err := a.CreateRepository(tt.args.projectKey) + got, err := a.CreateRepository(tt.args.projectKey, tt.args.repo) if (err != nil) != tt.wantErr { t.Errorf("DefaultApiService.CreateRepository() error = %v, wantErr %v", err, tt.wantErr) return