Tests: fixed prerequisite in test_share_fallback.py.

This commit is contained in:
Andrei Zeliankou
2020-03-19 03:15:50 +00:00
parent c6f9ca79e6
commit 06c790ac1e

View File

@@ -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()