Skip to content

Commit 8da80a6

Browse files
committed
Increase timeout to reduce failures in CI
1 parent 458c9f1 commit 8da80a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Common/test/Certificates.Test/ConfigureCertificateOptionsTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public async Task CertificateOptions_update_on_changed_contents(string certifica
167167
await File.WriteAllTextAsync(privateKeyFilePath, secondPrivateKeyContent, TestContext.Current.CancellationToken);
168168

169169
using Task pollTask = WaitUntilCertificateChangedToAsync(secondX509, optionsMonitor, certificateName, TestContext.Current.CancellationToken);
170-
await pollTask.WaitAsync(TimeSpan.FromSeconds(1), TestContext.Current.CancellationToken);
170+
await pollTask.WaitAsync(TimeSpan.FromSeconds(5), TestContext.Current.CancellationToken);
171171

172172
optionsMonitor.Get(certificateName).Certificate.Should().Be(secondX509);
173173
}

0 commit comments

Comments
 (0)