One bugfix and some cosmetics.
[python_utils.git] / tests / run_some_dependencies_test.py
index fcc9e7a29341ca5db4e859cba6ec875ce600feb3..a7ee9b459b0240dfa2b0cda2c7074e6c20adf97f 100755 (executable)
@@ -1,5 +1,7 @@
 #!/usr/bin/env python3
 
+# © Copyright 2021-2022, Scott Gasch
+
 """This is a "test" that just runs a few system utilities that have
 dependencies on this library in "do nothing" mode and makes sure they
 exit cleanly.
@@ -30,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)