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_routing.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test/test_routing.py') diff --git a/test/test_routing.py b/test/test_routing.py index bc84dd6f..63a7dc6c 100644 --- a/test/test_routing.py +++ b/test/test_routing.py @@ -2,8 +2,7 @@ from unit.applications.proto import TestApplicationProto class TestRouting(TestApplicationProto): - def setUpClass(): - TestApplicationProto().check_modules('python') + prerequisites = ['python'] def setUp(self): super().setUp() -- cgit