fix: [tests] By default, the workflow taxonomy isn't enabled.

pull/426/head
Raphaël Vinot 2019-07-21 01:46:10 +02:00
parent 1ec7ec37d9
commit 3793fb1b3b
1 changed files with 2 additions and 2 deletions

View File

@ -1402,10 +1402,10 @@ class TestComprehensive(unittest.TestCase):
attr_stats = self.admin_misp_connector.attributes_statistics(context='category', percentage=True)
self.assertDictEqual(attr_stats, expected_attr_stats_category_percent)
# Tags
to_test = {'tags': {'tlp:white___test': '1'}, 'taxonomies': {'workflow': 0}}
to_test = {'tags': {'tlp:white___test': '1'}, 'taxonomies': []}
tags_stats = self.admin_misp_connector.tags_statistics()
self.assertDictEqual(tags_stats, to_test)
to_test = {'tags': {'tlp:white___test': '100%'}, 'taxonomies': {'workflow': '0%'}}
to_test = {'tags': {'tlp:white___test': '100%'}, 'taxonomies': []}
tags_stats = self.admin_misp_connector.tags_statistics(percentage=True, name_sort=True)
self.assertDictEqual(tags_stats, to_test)
# Users