Skip to content

Commit

Permalink
Remove true randomness from a libraries tests (dotnet#100633)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobbotsch authored and Ruihan-Yin committed May 30, 2024
1 parent 0b67020 commit 36a90a6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public Errata4(ITestOutputHelper output) : base(output)
_output = output;
}

private Random _rand = new Random(unchecked((int)DateTime.Now.Ticks));
private Random _rand = new Random(12345678);

#region private const string xmlDocTemplate = ...

Expand Down

0 comments on commit 36a90a6

Please sign in to comment.