Fix tests

This commit is contained in:
George Fleury 2023-08-30 13:59:49 +02:00
parent 3d427fc798
commit 86c9000ec5

View File

@ -2288,10 +2288,10 @@ func TestDefaultApiService_GetArchive(t *testing.T) {
name string
fields fields
args args
want *APIResponse
want int64
wantErr, integrationTest bool
}{
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, &APIResponse{Message: "Get https://stash.domain.com/rest/api/1.0/projects//repos//archive: context canceled"}, true, false},
{"networkErrorContextExceeded", fields{client: generateConfigFake()}, args{}, 0, true, false},
}
for _, tt := range tests {
if tt.integrationTest != runIntegrationTests {