From ded2ac7d321bab02c2b9fb3d8b03a60d6b9a5f84 Mon Sep 17 00:00:00 2001 From: Dana Powers Date: Wed, 10 Jun 2015 07:50:36 -0700 Subject: Remove 1 sec timeout on topic creation in client response ordering test --- test/test_client_integration.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/test_client_integration.py b/test/test_client_integration.py index a6ea8f7..baaf79e 100644 --- a/test/test_client_integration.py +++ b/test/test_client_integration.py @@ -53,8 +53,8 @@ class TestKafkaClientIntegration(KafkaIntegrationTestCase): @kafka_versions('all') def test_send_produce_request_maintains_request_response_order(self): - self.client.ensure_topic_exists(b'foo', timeout=1) - self.client.ensure_topic_exists(b'bar', timeout=1) + self.client.ensure_topic_exists(b'foo') + self.client.ensure_topic_exists(b'bar') requests = [ ProduceRequest( -- cgit v1.2.1