summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2022-06-02 17:33:29 -0700
committerScott Gasch <[email protected]>2022-06-02 17:33:29 -0700
commitcdced3d08fad56ae3f4311d7f21d70e393942a0b (patch)
treea06d1a71aa60a8e1fb73ee7c52254e93644a66b7 /tests
parent044cc0cba99b861f4d7c02ee479888138ab83500 (diff)
Rename a method in exec_utils.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run_some_dependencies_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/run_some_dependencies_test.py b/tests/run_some_dependencies_test.py
index c9f48a5..a7ee9b4 100755
--- a/tests/run_some_dependencies_test.py
+++ b/tests/run_some_dependencies_test.py
@@ -32,7 +32,7 @@ class RunSomeDependenciesTest(unittest.TestCase):
]
for command in commands:
try:
- ret = exec_utils.cmd_with_timeout(command, 15.0)
+ ret = exec_utils.cmd_exitcode(command, 15.0)
self.assertEqual(0, ret)
except Exception as e:
logger.exception(e)