From f0e4f27460532b5f8da28cf3ace7d3c1de720503 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Sun, 26 Nov 2023 22:00:53 -0500 Subject: [PATCH] Up DMTests timeout x10 for slow Windows runners --- Content.Tests/DMTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Tests/DMTests.cs b/Content.Tests/DMTests.cs index 8fb03bf6bc..72c62cf541 100644 --- a/Content.Tests/DMTests.cs +++ b/Content.Tests/DMTests.cs @@ -144,7 +144,7 @@ public void TestFiles(string sourceFile, DMTestFlags testFlags) { _dreamMan.Update(); _taskManager.ProcessPendingTasks(); - if (watch.Elapsed.TotalMilliseconds > 500) { + if (watch.Elapsed.TotalSeconds > 5) { Assert.Fail("Test timed out"); } }