Skip to content

Commit 10f7868

Browse files
authored
extending session termination timeout to allow for slower execution on weaker hardware without failing tests (#50055)
1 parent 859ac2e commit 10f7868

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@ func testSessionRecordingModes(t *testing.T, suite *integrationTestSuite) {
994994
// waitSessionTermination wait until the errCh returns something and assert
995995
// it with the provided function.
996996
waitSessionTermination := func(t *testing.T, errCh chan error, errorAssertion require.ErrorAssertionFunc) {
997-
errorAssertion(t, waitForError(errCh, 10*time.Second))
997+
errorAssertion(t, waitForError(errCh, 30*time.Second))
998998
}
999999

10001000
// enableDiskFailure changes the OpenFileFunc on filesession package. The

0 commit comments

Comments
 (0)