diff options
Diffstat (limited to '')
-rw-r--r-- | test/test_python_procman.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_python_procman.py b/test/test_python_procman.py index 8fb499f7..a2e6126c 100644 --- a/test/test_python_procman.py +++ b/test/test_python_procman.py @@ -196,7 +196,7 @@ class TestPythonProcman(TestApplicationPython): ) self.assertIn( 'error', - self.conf({"idle_timeout": -1}, self.app_proc,), + self.conf({"idle_timeout": -1}, self.app_proc), 'negative idle_timeout', ) self.assertIn( @@ -206,12 +206,12 @@ class TestPythonProcman(TestApplicationPython): ) self.assertIn( 'error', - self.conf({"spare": 2, "max": 1}, self.app_proc,), + self.conf({"spare": 2, "max": 1}, self.app_proc), 'spare gt max', ) self.assertIn( 'error', - self.conf({"spare": 0, "max": 0}, self.app_proc,), + self.conf({"spare": 0, "max": 0}, self.app_proc), 'max zero', ) |