mirror of
https://github.com/gfleury/go-bitbucket-v1.git
synced 2025-04-05 01:10:12 -05:00
fix tests
This commit is contained in:
parent
2fb91eb1ff
commit
55e1fce0e0
@ -2794,6 +2794,7 @@ func TestDefaultApiService_GetProject(t *testing.T) {
|
||||
}
|
||||
type args struct {
|
||||
ctx context.Context
|
||||
key string
|
||||
}
|
||||
tests := []struct {
|
||||
name string
|
||||
@ -2802,14 +2803,14 @@ func TestDefaultApiService_GetProject(t *testing.T) {
|
||||
want *APIResponse
|
||||
wantErr bool
|
||||
}{
|
||||
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects/%7BprojectKey%7D: context canceled"}, true},
|
||||
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{key: "7BprojectKey"}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects/7BprojectKey: context canceled"}, true},
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
a := &DefaultApiService{
|
||||
client: tt.fields.client,
|
||||
}
|
||||
got, err := a.GetProject(tt.args.ctx)
|
||||
got, err := a.GetProject(tt.args.ctx, tt.args.key)
|
||||
if (err != nil) != tt.wantErr {
|
||||
t.Errorf("DefaultApiService.GetProject() error = %v, wantErr %v", err, tt.wantErr)
|
||||
return
|
||||
|
Loading…
x
Reference in New Issue
Block a user