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 4f7fb10 commit 106b1c0Copy full SHA for 106b1c0
tests/CommunityToolkit.Datasync.Server.Test/Live/LiteDb_Controller_Tests.cs
@@ -48,7 +48,7 @@ protected override Task<IRepository<LiteDbMovie>> GetPopulatedRepositoryAsync()
48
}
49
50
protected override Task<string> GetRandomEntityIdAsync(bool exists)
51
- => Task.FromResult(exists ? this.movies[random.Next(this.movies.Count)].Id : Guid.NewGuid().ToString());
+ => Task.FromResult(exists ? this.movies[this.random.Next(this.movies.Count)].Id : Guid.NewGuid().ToString());
52
53
public void Dispose()
54
{
0 commit comments