diff options
author | Andrei Zeliankou <zelenkov@nginx.com> | 2020-03-19 03:15:50 +0000 |
---|---|---|
committer | Andrei Zeliankou <zelenkov@nginx.com> | 2020-03-19 03:15:50 +0000 |
commit | 06c790ac1eea241224d184d48927f5f501df1309 (patch) | |
tree | 3e526e932aca895f0304dc253ebd9010406de37a /test/test_share_fallback.py | |
parent | c6f9ca79e6a8517544a0995414de8421a9983687 (diff) | |
download | unit-06c790ac1eea241224d184d48927f5f501df1309.tar.gz unit-06c790ac1eea241224d184d48927f5f501df1309.tar.bz2 |
Tests: fixed prerequisite in test_share_fallback.py.
Diffstat (limited to 'test/test_share_fallback.py')
-rw-r--r-- | test/test_share_fallback.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_share_fallback.py b/test/test_share_fallback.py index 8c45793e..1a5d4e4b 100644 --- a/test/test_share_fallback.py +++ b/test/test_share_fallback.py @@ -1,10 +1,10 @@ import os import unittest -from unit.applications.proto import TestApplicationProto +from unit.applications.lang.python import TestApplicationPython -class TestStatic(TestApplicationProto): - prerequisites = {} +class TestStatic(TestApplicationPython): + prerequisites = {'modules': ['python']} def setUp(self): super().setUp() |