diff --git a/tests/testlive_comprehensive.py b/tests/testlive_comprehensive.py index 89a3c93..05bc11c 100644 --- a/tests/testlive_comprehensive.py +++ b/tests/testlive_comprehensive.py @@ -1397,10 +1397,10 @@ class TestComprehensive(unittest.TestCase): 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.assertTrue(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()) + self.assertTrue(isinstance(response['attributes'][1].tags, list), response['attributes'][1].to_json()) self.assertEqual(response['attributes'][1].tags[0].name, 'tlp:amber___test') self.assertEqual(response['errors']['attribute_0']['value'][0], 'A similar attribute already exists for this event.') self.assertEqual(response['errors']['attribute_2']['value'][0], 'A similar attribute already exists for this event.')