chg: properly validate update_sharing_group without pythonify

pull/779/head
Raphaël Vinot 2021-08-05 10:50:40 +02:00
parent dbc18408c1
commit a158bcd83f
1 changed files with 2 additions and 2 deletions

View File

@ -2090,8 +2090,8 @@ class TestComprehensive(unittest.TestCase):
# Change releasability
r = self.admin_misp_connector.update_sharing_group({"releasability": "Testing updated"}, sharing_group, pythonify=True)
self.assertEqual(r.releasability, 'Testing updated')
r = self.admin_misp_connector.update_sharing_group({"releasability": "Testing updated"}, sharing_group)
self.assertEqual(r['SharingGroup']['releasability'], 'Testing updated')
r = self.admin_misp_connector.update_sharing_group({"releasability": "Testing updated - 2"}, sharing_group)
self.assertEqual(r['SharingGroup']['releasability'], 'Testing updated - 2')
# Test `sharing_group_exists` method
self.assertTrue(self.admin_misp_connector.sharing_group_exists(sharing_group))