Skip to content

Commit

Permalink
SNOW-981533 Fix flaky test of retries
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-pfus committed Dec 6, 2023
1 parent b8e6736 commit 32e7190
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion retry_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ func TestRetryQueryFailWithTimeout(t *testing.T) {
assertNilF(t, err, "failed to parse the test URL")
_, err = newRetryHTTP(context.Background(),
client,
emptyRequest, urlPtr, make(map[string]string), 15*time.Second, 100, defaultTimeProvider, nil).doPost().setBody([]byte{0}).execute()
emptyRequest, urlPtr, make(map[string]string), 20*time.Second, 100, defaultTimeProvider, nil).doPost().setBody([]byte{0}).execute()
assertNotNilF(t, err, "should fail to run retry")
var values url.Values
values, err = url.ParseQuery(urlPtr.RawQuery)
Expand Down

0 comments on commit 32e7190

Please sign in to comment.