From 3c3a9bf6e49b00f9e0f8a35a7b43d05bdc3f9e67 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Tue, 1 Dec 2020 21:43:33 -0500 Subject: [PATCH] Bump the timeout of a test --- tests/Tgstation.Server.Tests/Instance/RepositoryTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Tests/Instance/RepositoryTest.cs b/tests/Tgstation.Server.Tests/Instance/RepositoryTest.cs index efd3e9a21e..def6f1385d 100644 --- a/tests/Tgstation.Server.Tests/Instance/RepositoryTest.cs +++ b/tests/Tgstation.Server.Tests/Instance/RepositoryTest.cs @@ -209,7 +209,7 @@ namespace Tgstation.Server.Tests.Instance var mergingAgain = await repositoryClient.Update(withMerge, cancellationToken); Assert.IsNotNull(mergingAgain.ActiveJob); - await WaitForJob(mergingAgain.ActiveJob, 30, false, null, cancellationToken); + await WaitForJob(mergingAgain.ActiveJob, 60, false, null, cancellationToken); var final = await repositoryClient.Read(cancellationToken); Assert.AreEqual("asdffdsa", final.RevisionInformation.PrimaryTestMerge.Comment);