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_application.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_application.py')
-rw-r--r-- | test/test_python_application.py | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/test/test_python_application.py b/test/test_python_application.py index 5f9debb8..80854eb5 100644 --- a/test/test_python_application.py +++ b/test/test_python_application.py @@ -2,13 +2,10 @@ import time import unittest import unit -class TestUnitApplication(unit.TestUnitControl): +class TestUnitPythonApplication(unit.TestUnitControl): def setUpClass(): - u = unit.TestUnit() - - u.check_modules('python') - u.check_version('0.5') + unit.TestUnit().check_modules('python') def conf_with_name(self, name): self.conf({ |