@@ -308,8 +308,8 @@ def test_invalid_schema_pretty_output(self):
308
308
309
309
with self .assertRaises (SchemaError ) as e :
310
310
validate (schema = schema , instance = "" )
311
- error = str (e .exception ._formatted_message (formatter = cli . _PrettyFormatter . _json_formatter ))
312
-
311
+ error = str (e .exception ._formatted_message (
312
+ formatter = cli . _PrettyFormatter . _json_formatter ))
313
313
314
314
self .assertOutputs (
315
315
files = dict (some_schema = json .dumps (schema )),
@@ -339,8 +339,8 @@ def test_invalid_schema_multiple_errors_pretty_output(self):
339
339
340
340
with self .assertRaises (SchemaError ) as e :
341
341
validate (schema = schema , instance = "" )
342
- error = str (e .exception ._formatted_message (formatter = cli . _PrettyFormatter . _json_formatter ))
343
-
342
+ error = str (e .exception ._formatted_message (
343
+ formatter = cli . _PrettyFormatter . _json_formatter ))
344
344
345
345
self .assertOutputs (
346
346
files = dict (some_schema = json .dumps (schema )),
@@ -377,8 +377,8 @@ def test_invalid_schema_with_invalid_instance_pretty_output(self):
377
377
378
378
with self .assertRaises (SchemaError ) as e :
379
379
validate (schema = schema , instance = instance )
380
- error = str (e .exception ._formatted_message (formatter = cli . _PrettyFormatter . _json_formatter ))
381
-
380
+ error = str (e .exception ._formatted_message (
381
+ formatter = cli . _PrettyFormatter . _json_formatter ))
382
382
383
383
self .assertOutputs (
384
384
files = dict (
0 commit comments