summaryrefslogtreecommitdiff
path: root/jsonschema/tests/_suite.py
diff options
context:
space:
mode:
Diffstat (limited to 'jsonschema/tests/_suite.py')
-rw-r--r--jsonschema/tests/_suite.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/jsonschema/tests/_suite.py b/jsonschema/tests/_suite.py
index 4d21f98..1c61363 100644
--- a/jsonschema/tests/_suite.py
+++ b/jsonschema/tests/_suite.py
@@ -143,7 +143,7 @@ class Version(object):
case_description=each["description"],
schema=each["schema"],
remotes=self._remotes,
- **test
+ **test,
) for test in each["tests"]
)
@@ -177,7 +177,7 @@ class _Test(object):
self.subject,
self.case_description,
self.description,
- ]
+ ],
)
@property
@@ -213,7 +213,7 @@ class _Test(object):
schema=self.schema,
cls=Validator,
resolver=resolver,
- **kwargs
+ **kwargs,
)
def validate_ignoring_errors(self, Validator): # pragma: no cover