Skip to content

Commit

Permalink
Make test suite more robust against very slow test suites
Browse files Browse the repository at this point in the history
  • Loading branch information
wizzat committed May 7, 2014
1 parent b053da2 commit b81bf5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_consumer_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def test_offset_behavior__resuming_behavior(self):

# Start a consumer
consumer1 = self.consumer(
auto_commit_every_t = 600,
auto_commit_every_t = None,
auto_commit_every_n = 20,
)

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

# The total offset across both partitions should be at 180
consumer2 = self.consumer(
auto_commit_every_t = 600,
auto_commit_every_t = None,
auto_commit_every_n = 20,
)

Expand Down

0 comments on commit b81bf5f

Please sign in to comment.