diff options
author | rexlee8776 <limingjiang@huawei.com> | 2017-08-11 07:04:35 +0000 |
---|---|---|
committer | rexlee8776 <limingjiang@huawei.com> | 2017-08-11 07:20:02 +0000 |
commit | 36f0faeba773a092f65dfadb8149277a1c7fc7ee (patch) | |
tree | c4a009e946c0e8a42787ba5f82abb791ac655c82 /tests | |
parent | ec12a0a97fbc71bd44bf1ec7d6709991d8e1a332 (diff) |
bugfix: tc038 ssh default wait 3600s
JIRA: YARDSTICK-771
Change-Id: Ibcd2228505d341feb09b0d477e5f4ed6062c1e89
Signed-off-by: rexlee8776 <limingjiang@huawei.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/benchmark/scenarios/networking/test_pktgen.py | 2 |
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): |