From a48af17cf93db9e2ce410278b469bedcded84f35 Mon Sep 17 00:00:00 2001 From: Emmanuelle Vargas-Gonzalez Date: Fri, 15 Jan 2021 16:05:57 -0500 Subject: [PATCH] styling fixes --- stix2/test/v21/test_marking_definition.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stix2/test/v21/test_marking_definition.py b/stix2/test/v21/test_marking_definition.py index 7b4fc62..7fe32a8 100644 --- a/stix2/test/v21/test_marking_definition.py +++ b/stix2/test/v21/test_marking_definition.py @@ -151,7 +151,7 @@ def test_marking_definition_missing_definition(): 'spec_version': '2.1', 'id': 'marking-definition--f9dbe89c-0030-4a9d-8b78-0dcd0a0de874', 'name': 'This is the name of my favorite Marking', - 'definition_type': 'foobar' + 'definition_type': 'foobar', } with pytest.raises(exceptions.PropertyPresenceError): parse(my_favorite_marking) @@ -164,8 +164,8 @@ def test_marking_definition_missing_definition_type(): 'id': 'marking-definition--f9dbe89c-0030-4a9d-8b78-0dcd0a0de874', 'name': 'This is the name of my favorite Marking', 'definition': { - 'some_type': 'foobar' - } + 'some_type': 'foobar', + }, } with pytest.raises(exceptions.InvalidValueError): parse(my_favorite_marking)