diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-04-09 16:14:42 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-04-09 16:14:42 +0300 |
commit | af24e4dec453af7e3dcb45347cb59bfcbc037843 (patch) | |
tree | 91c79759ac13e3b43f9856f1394217eef2feca81 /test/test_python_basic.py | |
parent | 7b839bf5da772d4bf61a3be95fbdbb6d4591ba63 (diff) | |
download | unit-af24e4dec453af7e3dcb45347cb59bfcbc037843.tar.gz unit-af24e4dec453af7e3dcb45347cb59bfcbc037843.tar.bz2 |
Tests: simplified module checking.
Diffstat (limited to 'test/test_python_basic.py')
-rw-r--r-- | test/test_python_basic.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/test_python_basic.py b/test/test_python_basic.py index 1869103f..c425718d 100644 --- a/test/test_python_basic.py +++ b/test/test_python_basic.py @@ -2,8 +2,7 @@ from unit.control import TestControl class TestPythonBasic(TestControl): - def setUpClass(): - TestControl().check_modules('python') + prerequisites = ['python'] conf_app = { "app": { |