Skip to content

Commit 201be85

Browse files
committed
fix
1 parent f9a3d9c commit 201be85

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/KubernetesClient.Tests/WatchTests.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ public async Task CannotWatch()
6161
onEvent: (type, item) => { },
6262
onError: e => { onErrorCalled = true; }))
6363
{
64-
// delay for onerror to be called
65-
await Task.Delay(TimeSpan.FromSeconds(1)).ConfigureAwait(true);
64+
await Task.Delay(TimeSpan.FromSeconds(1)).ConfigureAwait(true); // delay for onerror to be called
6665
}
6766

6867
Assert.True(onErrorCalled);

0 commit comments

Comments
 (0)