diff options
Diffstat (limited to 'xtesting/tests/unit/utils/test_decorators.py')
-rw-r--r-- | xtesting/tests/unit/utils/test_decorators.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xtesting/tests/unit/utils/test_decorators.py b/xtesting/tests/unit/utils/test_decorators.py index ae6ffa4b..f5408868 100644 --- a/xtesting/tests/unit/utils/test_decorators.py +++ b/xtesting/tests/unit/utils/test_decorators.py @@ -94,7 +94,8 @@ class DecoratorsTesting(unittest.TestCase): self.assertEqual(test.push_to_db(), testcase.TestCase.EX_OK) args[0].assert_called_once_with( 'http://127.0.0.1', data=self._get_json(), - headers={'Content-Type': 'application/json'}) + headers={'Content-Type': 'application/json'}, + timeout=10) def test_wrong_shema(self): os.environ['TEST_DB_URL'] = '/dev/null' |