]> review.fuel-infra Code Review - openstack-build/neutron-build.git/commitdiff
Raise timeout for test_conntrack_disassociate_fip
authorIhar Hrachyshka <ihrachys@redhat.com>
Thu, 12 Feb 2015 18:56:31 +0000 (19:56 +0100)
committerIhar Hrachyshka <ihrachys@redhat.com>
Thu, 12 Feb 2015 18:56:31 +0000 (19:56 +0100)
It seems that 15 secs is not always enough, so raise the timeout to
something guaranteed to indicate a failure.

Change-Id: I4821983ebb2ef9483c0d35737794ddb45ddd4ac6
Closes-Bug: #1421354

neutron/tests/functional/agent/test_l3_agent.py

index e9e02e08b5152a00d7be561c0c5decd2ca3aadd2..825e16de1f5eeb7decdeccdb6096fbc4fb3188f5 100755 (executable)
@@ -321,7 +321,7 @@ class L3AgentTestCase(L3AgentTestFramework):
             self.assertEqual(
                 n, len([line for line in out.strip().split('\n') if line]))
 
-        with self.assert_max_execution_time(15):
+        with self.assert_max_execution_time(100):
             assert_num_of_conntrack_rules(0)
 
             self.assertTrue(netcat.test_connectivity())