summaryrefslogtreecommitdiff
path: root/jsonschema/tests/_suite.py
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2021-08-04 10:29:44 +0100
committerJulian Berman <Julian@GrayVines.com>2021-08-04 10:29:44 +0100
commite908b8055596329f0b4ba1bc0dc1c793b437299f (patch)
treecb2bb0a41b6b8b8b26715e17bcdc944a676e29a1 /jsonschema/tests/_suite.py
parent39697cda809169cf7031839bb0174b5d8136029e (diff)
downloadjsonschema-e908b8055596329f0b4ba1bc0dc1c793b437299f.tar.gz
Fix missing trailing commas.draft2020-12
Add flake8-commas to ensure this stays the case.
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