From 5c348958d1fb593cc84de10b226fc93f8bf7cd05 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Mon, 6 Jul 2020 03:11:58 -0400 Subject: [PATCH] THAT IS A VERY STRANGE ASSERT TO FAIL --- 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 c73ed0f635..93732b0711 100644 --- a/tests/Tgstation.Server.Tests/IntegrationTest.cs +++ b/tests/Tgstation.Server.Tests/IntegrationTest.cs @@ -213,7 +213,7 @@ namespace Tgstation.Server.Tests .ToList(); } - Assert.AreEqual(1, jobs.Count); + Assert.AreEqual(1, jobs.Count, $"Why are there multiple active jobs? \"{String.Join("\", \"", jobs.Select(x => x.Description))}\""); var reattachJob = jobs.Single(); Assert.IsTrue(reattachJob.StartedAt.Value >= preStartupTime);