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 de1fc0c commit 8f0879cCopy full SHA for 8f0879c
OptimizelySDK.Tests/OdpTests/OdpEventManagerTests.cs
@@ -311,7 +311,7 @@ public void ShouldAddAdditionalInformationToEachEvent()
311
}
312
313
[Test]
314
- public void ShouldAttemptToFlushAnEmptyQueueAtFlushInterval()
+ public void ShouldNotAttemptToFlushAnEmptyQueueAtFlushInterval()
315
{
316
var eventManager = new OdpEventManager.Builder().
317
WithOdpEventApiManager(_mockApiManager.Object).
@@ -327,7 +327,7 @@ public void ShouldAttemptToFlushAnEmptyQueueAtFlushInterval()
327
eventManager.Stop();
328
329
_mockLogger.Verify(l => l.Log(LogLevel.DEBUG, "Flushing queue."),
330
- Times.AtLeast(3));
+ Times.Never);
331
332
333
0 commit comments