aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/tests/unit/core/test_testcase.py
diff options
context:
space:
mode:
Diffstat (limited to 'xtesting/tests/unit/core/test_testcase.py')
-rw-r--r--xtesting/tests/unit/core/test_testcase.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/xtesting/tests/unit/core/test_testcase.py b/xtesting/tests/unit/core/test_testcase.py
index dbefd974..f7d1b940 100644
--- a/xtesting/tests/unit/core/test_testcase.py
+++ b/xtesting/tests/unit/core/test_testcase.py
@@ -180,7 +180,8 @@ class TestCaseTesting(unittest.TestCase):
args[0].assert_called_once_with(
os.environ['TEST_DB_URL'],
data=json.dumps(payload, sort_keys=True),
- headers=self._headers)
+ headers=self._headers,
+ timeout=10)
def test_pushdb_daily_job(self):
self._test_pushdb_version(version="master")
@@ -203,7 +204,8 @@ class TestCaseTesting(unittest.TestCase):
mock_function.assert_called_once_with(
os.environ['TEST_DB_URL'],
data=json.dumps(self._get_data(), sort_keys=True),
- headers=self._headers)
+ headers=self._headers,
+ timeout=10)
def test_check_requirements(self):
self.test.check_requirements()