summaryrefslogtreecommitdiffstats
path: root/scripts/automation/regression/stateful_tests/trex_general_test.py
diff options
context:
space:
mode:
authorYaroslav Brustinov <ybrustin@cisco.com>2016-04-03 18:05:00 +0300
committerYaroslav Brustinov <ybrustin@cisco.com>2016-04-03 18:05:00 +0300
commit55a12c8296f20e1c9951db2b7740d9f2a4edd036 (patch)
tree8312ae3cc42a6d5e68a898f6d842db2a29472e95 /scripts/automation/regression/stateful_tests/trex_general_test.py
parentc70b71af56c49e320553d6f210ea3f912f69ec3c (diff)
typo
Diffstat (limited to 'scripts/automation/regression/stateful_tests/trex_general_test.py')
-rwxr-xr-xscripts/automation/regression/stateful_tests/trex_general_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/automation/regression/stateful_tests/trex_general_test.py b/scripts/automation/regression/stateful_tests/trex_general_test.py
index 366f7d83..5a13e5ff 100755
--- a/scripts/automation/regression/stateful_tests/trex_general_test.py
+++ b/scripts/automation/regression/stateful_tests/trex_general_test.py
@@ -271,7 +271,7 @@ class CTRexGeneral_Test(unittest.TestCase):
client_pkg_name = os.path.basename(client_pkg_files[0])
if not os.path.exists('%s/trex_client' % CTRexScenario.scripts_path):
print('\nUnzipping package')
- return_code, _, stderr = run_command("sh -ec 'cd %s; tar -xzf %s'" % (CTRexScenario.scripts_path, client_pkg_name))
+ return_code, _, stderr = misc_methods.run_command("sh -ec 'cd %s; tar -xzf %s'" % (CTRexScenario.scripts_path, client_pkg_name))
if return_code:
raise Exception('Could not untar the client package: %s' % stderr)
else: