We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 136b103 commit f9a3d9cCopy full SHA for f9a3d9c
tests/KubernetesClient.Tests/WatchTests.cs
@@ -555,10 +555,10 @@ public async Task EnsureTimeoutWorks()
555
{
556
using var server = new MockKubeApiServer(testOutput, async httpContext =>
557
558
- await Task.Delay(TimeSpan.FromSeconds(120)).ConfigureAwait(true); // The default timeout is 100 seconds
559
- await WriteStreamLine(httpContext, MockKubeApiServer.MockPodResponse).ConfigureAwait(true);
+ await Task.Delay(TimeSpan.FromSeconds(120)).ConfigureAwait(true); // The default timeout is 100 seconds
+ await WriteStreamLine(httpContext, MockKubeApiServer.MockPodResponse).ConfigureAwait(true);
560
561
- return false;
+ return false;
562
});
563
564
// raw timeout
0 commit comments