Skip to content

Commit b50e3e2

Browse files
committed
test(follower): revert timeout on error suppression tests
1 parent 721a94e commit b50e3e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/unit/features/test_changes_follower.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ def test_start_transient_errors_with_suppression_all_changes(self):
512512
)
513513
try:
514514
follower = ChangesFollower(self.client, db="db", error_tolerance=300)
515-
count = self.runner(follower, _Mode.LISTEN, timeout=3)
515+
count = self.runner(follower, _Mode.LISTEN, timeout=1)
516516
except BaseException:
517517
self.fail("There should be no exception.")
518518
self.assertEqual(
@@ -550,7 +550,7 @@ def test_start_transient_errors_with_max_suppression_all_changes(self):
550550
)
551551
try:
552552
follower = ChangesFollower(self.client, db="db")
553-
count = self.runner(follower, _Mode.LISTEN, timeout=3)
553+
count = self.runner(follower, _Mode.LISTEN, timeout=1)
554554
except BaseException:
555555
self.fail("There should be no exception.")
556556
self.assertEqual(

0 commit comments

Comments
 (0)