Skip to content

Commit b81bf5f

Browse files
committed
Make test suite more robust against very slow test suites
1 parent b053da2 commit b81bf5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test_consumer_integration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def test_offset_behavior__resuming_behavior(self):
220220

221221
# Start a consumer
222222
consumer1 = self.consumer(
223-
auto_commit_every_t = 600,
223+
auto_commit_every_t = None,
224224
auto_commit_every_n = 20,
225225
)
226226

@@ -230,7 +230,7 @@ def test_offset_behavior__resuming_behavior(self):
230230

231231
# The total offset across both partitions should be at 180
232232
consumer2 = self.consumer(
233-
auto_commit_every_t = 600,
233+
auto_commit_every_t = None,
234234
auto_commit_every_n = 20,
235235
)
236236

0 commit comments

Comments
 (0)