From a68d6cc489843cda67c5ff0009d5d6e208c52dc6 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Fri, 26 Jun 2020 16:39:50 -0400 Subject: [PATCH] Fix a typo --- tests/Tgstation.Server.Tests/IntegrationTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Tests/IntegrationTest.cs b/tests/Tgstation.Server.Tests/IntegrationTest.cs index 6584ec587d..df061b57bf 100644 --- a/tests/Tgstation.Server.Tests/IntegrationTest.cs +++ b/tests/Tgstation.Server.Tests/IntegrationTest.cs @@ -73,7 +73,7 @@ namespace Tgstation.Server.Tests //wait up to 3 minutes for the dl and install await Task.WhenAny(serverTask, Task.Delay(TimeSpan.FromMinutes(3), cancellationToken)).ConfigureAwait(false); - Assert.IsTrue(serverTask.IsCompleted, "Sever still running!"); + Assert.IsTrue(serverTask.IsCompleted, "Server still running!"); Assert.IsTrue(Directory.Exists(server.UpdatePath), "Update directory not present!");