aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/tests/unit/utils/test_decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/tests/unit/utils/test_decorators.py')
-rw-r--r--xtesting/tests/unit/utils/test_decorators.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/xtesting/tests/unit/utils/test_decorators.py b/xtesting/tests/unit/utils/test_decorators.py
index c08a7ea3..2810df15 100644
--- a/xtesting/tests/unit/utils/test_decorators.py
+++ b/xtesting/tests/unit/utils/test_decorators.py
@@ -85,6 +85,8 @@ class DecoratorsTesting(unittest.TestCase):
test = self._get_testcase()
self.assertEqual(test.run(), testcase.TestCase.EX_OK)
+ @mock.patch('os.path.join')
+ @mock.patch('re.sub')
@mock.patch('requests.post')
def test_http_shema(self, *args):
os.environ['TEST_DB_URL'] = 'http://127.0.0.1'