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 c44c6af commit a03d8f6Copy full SHA for a03d8f6
src/Ydb.Sdk/tests/Topic/WriterUnitTests.cs
@@ -87,7 +87,7 @@ public async Task Initialize_WhenStreamClosedByServer_ShouldRetryInitializeAndRe
87
88
// check attempt repeated!!!
89
_mockStream.Verify(stream => stream.Write(It.IsAny<FromClient>()), Times.Exactly(3));
90
- _mockStream.Verify(stream => stream.MoveNextAsync(), Times.Exactly(4));
+ _mockStream.Verify(stream => stream.MoveNextAsync(), Times.AtLeast(3));
91
_mockStream.Verify(stream => stream.Current, Times.Exactly(2));
92
}
93
0 commit comments