diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-02-14 17:14:16 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-02-14 17:14:16 +0300 |
commit | ee39da0e00423d2e4f109f90142c3543e819c14d (patch) | |
tree | b08346f2f11f25ed6bc5438eb81795c2666df549 /test/test_python_procman.py | |
parent | 27b00629e1e3af2f8b84aa349351df50f05f3c83 (diff) | |
download | unit-ee39da0e00423d2e4f109f90142c3543e819c14d.tar.gz unit-ee39da0e00423d2e4f109f90142c3543e819c14d.tar.bz2 |
Tests: removed unused code in unit.py.
Diffstat (limited to 'test/test_python_procman.py')
-rw-r--r-- | test/test_python_procman.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/test_python_procman.py b/test/test_python_procman.py index 52f5ac96..5dea007a 100644 --- a/test/test_python_procman.py +++ b/test/test_python_procman.py @@ -4,13 +4,10 @@ import subprocess import unittest import unit -class TestUnitProcman(unit.TestUnitControl): +class TestUnitPythonProcman(unit.TestUnitControl): def setUpClass(): - u = unit.TestUnit() - - u.check_modules('python') - u.check_version('0.5') + unit.TestUnit().check_modules('python') def pids_for_process(self, process=None): if process is None: |