diff options
| author | Scott Gasch <[email protected]> | 2022-06-02 17:33:29 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2022-06-02 17:33:29 -0700 |
| commit | cdced3d08fad56ae3f4311d7f21d70e393942a0b (patch) | |
| tree | a06d1a71aa60a8e1fb73ee7c52254e93644a66b7 /tests | |
| parent | 044cc0cba99b861f4d7c02ee479888138ab83500 (diff) | |
Rename a method in exec_utils.
Diffstat (limited to 'tests')
| -rwxr-xr-x | tests/run_some_dependencies_test.py | 2 |
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) |
