aboutsummaryrefslogtreecommitdiffstats
path: root/xtesting/tests/unit/utils/test_decorators.py
diff options
context:
space:
mode:
authorCédric Ollivier <cedric.ollivier@orange.com>2023-09-29 14:12:18 +0200
committerCédric Ollivier <cedric.ollivier@orange.com>2023-09-29 15:15:11 +0200
commita5be192daf440e217c7fecb670948fe41e3a4edf (patch)
tree6ae9d7bf96a8a6b7f2feb074f3c5f8a535ce8edc /xtesting/tests/unit/utils/test_decorators.py
parentd9d6179a483656bfc8993f56d4d486d669d9e103 (diff)
Upgrade pylint and fix latest warnings
Change-Id: I8b9e4b663a12ac9be18fded2d7b4e4b38428fa9f Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com> (cherry picked from commit f430ee4d9ef63f104dde63710fce7f8fa3c61591)
Diffstat (limited to 'xtesting/tests/unit/utils/test_decorators.py')
-rw-r--r--xtesting/tests/unit/utils/test_decorators.py3
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'