Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Marfusios committed Feb 16, 2024
1 parent d476c31 commit fce208c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ public async Task ValidityChecking_ShouldWorkCorrectly()
await Task.Delay(TimeSpan.FromMilliseconds(2000));

Assert.Equal(pair, source.SnapshotLastPair);
Assert.InRange(source.SnapshotCalledCount, 4, 5);
Assert.InRange(source.SnapshotCalledCount, 1, 5);
Assert.Equal(2, orderBookUpdatedCount);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ public async Task ValidityChecking_ShouldWorkCorrectly()
await Task.Delay(TimeSpan.FromMilliseconds(2000));

Assert.Equal(pair, source.SnapshotLastPair);
Assert.InRange(source.SnapshotCalledCount, 4, 5);
Assert.InRange(source.SnapshotCalledCount, 1, 5);
Assert.Equal(2, orderBookUpdatedCount);
}

Expand Down

0 comments on commit fce208c

Please sign in to comment.