We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ff2c8a commit 142d226Copy full SHA for 142d226
tests/test_config_schema.py
@@ -3,9 +3,11 @@
3
"""
4
5
import jsonschema
6
+
7
from tljh.config_schema import config_schema
8
9
10
def test_valid_config_json_schema():
- """Validate that the JSON schema fits its $schema specification"""
- validator_class = jsonschema.validators.validator_for(config_schema)
11
- validator_class.check_schema(config_schema)
+ """Validate that the JSON schema fits its $schema specification"""
12
+ validator_class = jsonschema.validators.validator_for(config_schema)
13
+ validator_class.check_schema(config_schema)
0 commit comments