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.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/jsonschema/tests/_suite.py b/jsonschema/tests/_suite.py
index 840bd8e..06fbd11 100644
--- a/jsonschema/tests/_suite.py
+++ b/jsonschema/tests/_suite.py
@@ -8,7 +8,6 @@ import os
import re
import subprocess
import sys
-import unittest
from bp.filepath import FilePath
from pyrsistent import pmap, pvector
@@ -27,10 +26,12 @@ def _find_suite():
root = FilePath(jsonschema.__file__).parent().sibling("json")
if not root.isdir():
raise ValueError(
- "Can't find the JSON-Schema-Test-Suite directory. "
- "Set the 'JSON_SCHEMA_TEST_SUITE' environment "
- "variable or run the tests from alongside a checkout "
- "of the suite.",
+ (
+ "Can't find the JSON-Schema-Test-Suite directory. "
+ "Set the 'JSON_SCHEMA_TEST_SUITE' environment "
+ "variable or run the tests from alongside a checkout "
+ "of the suite."
+ ),
)
return root