chg: [tests] Add custom error message on upload_sample

pull/418/head
Raphaël Vinot 2019-07-05 10:16:47 +02:00
parent b8b384a3c3
commit 5aa94d277b
1 changed files with 2 additions and 1 deletions

View File

@ -879,7 +879,8 @@ class TestComprehensive(unittest.TestCase):
with open('tests/testlive_comprehensive.py', 'rb') as f:
response = self.user_misp_connector.upload_sample(filename='testfile.py', filepath_or_bytes=f.read(),
event_id=first.id)
self.assertEqual(response['message'], 'Success, saved all attributes.')
self.assertEqual(response['message'], 'Success, saved all attributes.', "Content of response: {}".format(response))
first = self.user_misp_connector.get_event(first.id)
self.assertEqual(len(first.objects), 1)
self.assertEqual(first.objects[0].name, 'file')