From 08fb10982adb148909b7239eecc4899da213d0ca Mon Sep 17 00:00:00 2001 From: Erik Tate Date: Mon, 9 Dec 2024 14:47:53 -0500 Subject: [PATCH] extending session termination timeout to allow for slower execution on weaker hardware without failing tests --- integration/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration/integration_test.go b/integration/integration_test.go index 6557cdcf9b1b8..f99ea4c01eafc 100644 --- a/integration/integration_test.go +++ b/integration/integration_test.go @@ -994,7 +994,7 @@ func testSessionRecordingModes(t *testing.T, suite *integrationTestSuite) { // waitSessionTermination wait until the errCh returns something and assert // it with the provided function. waitSessionTermination := func(t *testing.T, errCh chan error, errorAssertion require.ErrorAssertionFunc) { - errorAssertion(t, waitForError(errCh, 10*time.Second)) + errorAssertion(t, waitForError(errCh, 30*time.Second)) } // enableDiskFailure changes the OpenFileFunc on filesession package. The