test: ordering in CI is different than local

This commit is contained in:
Dylan R. E. Moonfire 2021-01-21 18:38:24 -06:00
parent 6ae8151b1f
commit 276332f4c0

View file

@ -45,7 +45,7 @@ namespace MfGames.Locking.Tests
public void ReadsDoNotBlockReads()
{
Task.WaitAll(
Task.Run(() => this.TestRead(1, 7, 1)),
Task.Run(() => this.TestRead(1, 8, 1)),
Task.Run(() => this.TestRead(2, 1, 2)),
Task.Run(() => this.TestRead(4, 1, 3)));