From af24e4dec453af7e3dcb45347cb59bfcbc037843 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Tue, 9 Apr 2019 16:14:42 +0300 Subject: Tests: simplified module checking. --- test/test_access_log.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/test_access_log.py') diff --git a/test/test_access_log.py b/test/test_access_log.py index c58ee26f..1c8c29d7 100644 --- a/test/test_access_log.py +++ b/test/test_access_log.py @@ -6,8 +6,7 @@ from unit.applications.lang.python import TestApplicationPython class TestAccessLog(TestApplicationPython): - def setUpClass(): - TestApplicationPython().check_modules('python') + prerequisites = ['python'] def load(self, script): super().load(script) -- cgit