From 06c790ac1eea241224d184d48927f5f501df1309 Mon Sep 17 00:00:00 2001 From: Andrei Zeliankou Date: Thu, 19 Mar 2020 03:15:50 +0000 Subject: [PATCH] Tests: fixed prerequisite in test_share_fallback.py. --- test/test_share_fallback.py | 6 +++--- 1 file 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()