From da11e3d31311ac91dc77f6aa8a8ad15ba951db5b Mon Sep 17 00:00:00 2001 From: Dominion Date: Fri, 26 May 2023 15:44:40 -0400 Subject: [PATCH] Fix a typo --- tests/Tgstation.Server.Tests/Live/DummyChatProviderFactory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Tests/Live/DummyChatProviderFactory.cs b/tests/Tgstation.Server.Tests/Live/DummyChatProviderFactory.cs index 4610fefe4a..d8098054e3 100644 --- a/tests/Tgstation.Server.Tests/Live/DummyChatProviderFactory.cs +++ b/tests/Tgstation.Server.Tests/Live/DummyChatProviderFactory.cs @@ -48,7 +48,7 @@ namespace Tgstation.Server.Tests.Live commands = commandFactory.GenerateCommands(); var baseRng = new Random( - 22475 // comment this out to enable true randomness, not that seeding is imperfect because Task execution order is non-deterministic + 22475 // comment this out to enable true randomness, note that seeding is imperfect because Task execution order is non-deterministic ); seededRng = new Dictionary{ { ChatProvider.Irc, new Random(baseRng.Next()) },