From b05615d0e16d225e82146a194805170b12d8b3a9 Mon Sep 17 00:00:00 2001 From: Vittorio Curcio Date: Tue, 11 Dec 2018 23:06:25 +0100 Subject: [PATCH] Fix GetContent signature --- default_api.go | 2 +- default_api_test.go | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/default_api.go b/default_api.go index cd6f810..97b78ff 100644 --- a/default_api.go +++ b/default_api.go @@ -3848,7 +3848,7 @@ func (a *DefaultApiService) GetCommits_8(pullRequestID int64, localVarOptionals @param "blame" (string) if present the blame will be returned for the file as well. @param "noContent" (string) if present and used with blame only the blame is retrieved instead of the contents. @return */ -func (a *DefaultApiService) GetContent(localVarOptionals map[string]interface{}) (*APIResponse, error) { +func (a *DefaultApiService) GetContent(projectKey string, repositorySlug string, localVarOptionals map[string]interface{}) (*APIResponse, error) { var ( localVarHTTPMethod = strings.ToUpper("Get") localVarPostBody interface{} diff --git a/default_api_test.go b/default_api_test.go index 1da056d..3d3a199 100644 --- a/default_api_test.go +++ b/default_api_test.go @@ -2099,6 +2099,8 @@ func TestDefaultApiService_GetContent(t *testing.T) { client *APIClient } type args struct { + projectKey string + repositorySlug string localVarOptionals map[string]interface{} } tests := []struct { @@ -2115,7 +2117,7 @@ func TestDefaultApiService_GetContent(t *testing.T) { a := &DefaultApiService{ client: tt.fields.client, } - got, err := a.GetContent(tt.args.localVarOptionals) + got, err := a.GetContent(tt.args.projectKey, tt.args.repositorySlug, tt.args.localVarOptionals) if (err != nil) != tt.wantErr { t.Errorf("DefaultApiService.GetContent() error = %v, wantErr %v", err, tt.wantErr) return