From 2841d56131afcee70d873bbaafad634b38a18825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 19 Aug 2019 11:48:41 +0200 Subject: [PATCH] fix: [Travis] Slight changes to help debug on Travis. --- tests/testlive_comprehensive.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/testlive_comprehensive.py b/tests/testlive_comprehensive.py index 31b9e74..89a3c93 100644 --- a/tests/testlive_comprehensive.py +++ b/tests/testlive_comprehensive.py @@ -1396,6 +1396,8 @@ class TestComprehensive(unittest.TestCase): attr4.type = 'ip-dst' attr4.add_tag('tlp:amber___test') response = self.user_misp_connector.add_attribute(first, [attr1, attr2, attr3, attr4]) + time.sleep(5) + self.assertEqual(isinstance(response['attributes'], list), response['attributes']) self.assertEqual(response['attributes'][0].value, '1.2.3.5') self.assertEqual(response['attributes'][1].value, '1.2.3.6') self.assertEqual(isinstance(response['attributes'][1].tags, list), response['attributes'][1].to_json())