aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKubi <jean.gaoliang@huawei.com>2017-08-11 07:55:43 +0000
committerGerrit Code Review <gerrit@opnfv.org>2017-08-11 07:55:43 +0000
commitd8a34ec774f96412f7722fc4ddc66c796722ac25 (patch)
tree4945054b97b0e99115a1b6be5fcf2a03a2a8548a /tests
parenta9be662eab5ee7a1a5db1905bd7877974422e780 (diff)
parent36f0faeba773a092f65dfadb8149277a1c7fc7ee (diff)
Merge "bugfix: tc038 ssh default wait 3600s"
Diffstat (limited to 'tests')
-rw-r--r--tests/unit/benchmark/scenarios/networking/test_pktgen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/benchmark/scenarios/networking/test_pktgen.py b/tests/unit/benchmark/scenarios/networking/test_pktgen.py
index 2914c8e02..32ba255b2 100644
--- a/tests/unit/benchmark/scenarios/networking/test_pktgen.py
+++ b/tests/unit/benchmark/scenarios/networking/test_pktgen.py
@@ -68,7 +68,7 @@ class PktgenTestCase(unittest.TestCase):
mock_ssh.SSH.from_node().execute.assert_called_with(
"sudo iptables -F; "
"sudo iptables -A INPUT -p udp --dport 1000:%s -j DROP"
- % 1010)
+ % 1010, timeout=60)
def test_pktgen_unsuccessful_iptables_setup(self, mock_ssh):