diff --git a/stix2/test/v20/test_interoperability.py b/stix2/test/v20/test_interoperability.py index c0ff555..25131f1 100644 --- a/stix2/test/v20/test_interoperability.py +++ b/stix2/test/v20/test_interoperability.py @@ -181,8 +181,8 @@ if __name__ == '__main__': vulnerability = stix2.v20.Vulnerability(**VULNERABILITY_KWARGS, interoperability=True) report = stix2.v20.Report(**REPORT_KWARGS, interoperability=True) bundle = stix2.v20.Bundle(**BUNDLE_KWARGS, interoperability=True, - objects=[attack_pattern, campaign, course_of_action, identity, indicator, - intrusion_set, malware, marking_definition, observed_data, tool, - relationship, sighting, threat_actor, vulnerability, report]) + objects=[attack_pattern, campaign, course_of_action, identity, indicator, + intrusion_set, malware, marking_definition, observed_data, tool, + relationship, sighting, threat_actor, vulnerability, report]) stix2.parse(dict(bundle), interoperability=True) print("All interoperability tests passed !") diff --git a/stix2/test/v21/test_interoperability.py b/stix2/test/v21/test_interoperability.py index b22091d..d602087 100644 --- a/stix2/test/v21/test_interoperability.py +++ b/stix2/test/v21/test_interoperability.py @@ -188,8 +188,8 @@ if __name__ == '__main__': vulnerability = stix2.v21.Vulnerability(**VULNERABILITY_KWARGS, interoperability=True) report = stix2.v21.Report(**REPORT_KWARGS, interoperability=True) bundle = stix2.v21.Bundle(**BUNDLE_KWARGS, interoperability=True, - objects=[attack_pattern, campaign, course_of_action, identity, indicator, - intrusion_set, malware, marking_definition, observed_data, tool, - relationship, sighting, threat_actor, vulnerability, report]) + objects=[attack_pattern, campaign, course_of_action, identity, indicator, + intrusion_set, malware, marking_definition, observed_data, tool, + relationship, sighting, threat_actor, vulnerability, report]) stix2.parse(dict(bundle), interoperability=True) print("All interoperability tests passed !")