aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <juan.vidal.allende@ericsson.com>2017-07-11 09:37:02 +0000
committerroot <juan.vidal.allende@ericsson.com>2017-07-11 09:42:04 +0000
commit3c6413555fa3fd67676d1265b41e138e96f7decc (patch)
treeae1fccb7bda3460f8efa8fc1e69f21318ff48024
parent54ac61161108b037c1ccb3dca9cd2640f46b78b9 (diff)
Fix missing argument in wait_for_classification_rules
Change-Id: I4b41608ae7f91f51bd55d80c4e57b7e59e94855a Signed-off-by: Juan Vidal Allende <juan.vidal.allende@ericsson.com>
-rw-r--r--sfc/tests/functest/sfc_symmetric_chain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfc/tests/functest/sfc_symmetric_chain.py b/sfc/tests/functest/sfc_symmetric_chain.py
index 568a6488..0d4fd732 100644
--- a/sfc/tests/functest/sfc_symmetric_chain.py
+++ b/sfc/tests/functest/sfc_symmetric_chain.py
@@ -180,7 +180,7 @@ def main():
# Start measuring the time it takes to implement the classification rules
t1 = threading.Thread(target=test_utils.wait_for_classification_rules,
- args=(ovs_logger, compute_clients,))
+ args=(ovs_logger, compute_clients, 1))
try:
t1.start()
except Exception, e: