Skip to content

Commit 1d25136

Browse files
authored
Fix flaky Core test (Azure#33078)
1 parent c2cd824 commit 1d25136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/core/Azure.Core/tests/AzureSasCredentialSynchronousPolicyTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@ public async Task VerifyRetryAfterSasCredentialUpdateOperation()
108108
if (callCount++ == 0)
109109
{
110110
Assert.AreEqual("?foo=bar&sig=first_signature_value", req.Uri.Query);
111-
azureSasCredential.Update(SECOND_SIGNATURE_VALUE);
112111
Thread.Sleep(100);
112+
azureSasCredential.Update(SECOND_SIGNATURE_VALUE);
113113
return new MockResponse(429);
114114
}
115115
else

0 commit comments

Comments
 (0)