diff options
author | Julian Berman <Julian@GrayVines.com> | 2019-10-07 07:59:57 -0400 |
---|---|---|
committer | Julian Berman <Julian@GrayVines.com> | 2019-10-07 07:59:57 -0400 |
commit | 572e563cdacebfd6c3a8619470b10d34f923ec34 (patch) | |
tree | 34a54b1b3c08c8a4c5ca34c5abc1aff6d36fb2f2 /jsonschema/tests/test_jsonschema_test_suite.py | |
parent | 034886ff37fd51a094eece68b617622152d32a78 (diff) | |
download | jsonschema-572e563cdacebfd6c3a8619470b10d34f923ec34.tar.gz |
Minor style.
Diffstat (limited to 'jsonschema/tests/test_jsonschema_test_suite.py')
-rw-r--r-- | jsonschema/tests/test_jsonschema_test_suite.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/jsonschema/tests/test_jsonschema_test_suite.py b/jsonschema/tests/test_jsonschema_test_suite.py index 26a9fd9..3d76672 100644 --- a/jsonschema/tests/test_jsonschema_test_suite.py +++ b/jsonschema/tests/test_jsonschema_test_suite.py @@ -68,8 +68,8 @@ else: TestDraft3 = DRAFT3.to_unittest_testcase( DRAFT3.tests(), - DRAFT3.optional_tests_of(name="format"), DRAFT3.optional_tests_of(name="bignum"), + DRAFT3.optional_tests_of(name="format"), DRAFT3.optional_tests_of(name="zeroTerminatedFloats"), Validator=Draft3Validator, format_checker=draft3_format_checker, @@ -87,10 +87,10 @@ TestDraft3 = DRAFT3.to_unittest_testcase( TestDraft4 = DRAFT4.to_unittest_testcase( DRAFT4.tests(), - DRAFT4.optional_tests_of(name="format"), DRAFT4.optional_tests_of(name="bignum"), - DRAFT4.optional_tests_of(name="zeroTerminatedFloats"), DRAFT4.optional_tests_of(name="ecmascript-regex"), + DRAFT4.optional_tests_of(name="format"), + DRAFT4.optional_tests_of(name="zeroTerminatedFloats"), Validator=Draft4Validator, format_checker=draft4_format_checker, skip=lambda test: ( @@ -136,10 +136,10 @@ TestDraft4 = DRAFT4.to_unittest_testcase( TestDraft6 = DRAFT6.to_unittest_testcase( DRAFT6.tests(), - DRAFT6.optional_tests_of(name="format"), DRAFT6.optional_tests_of(name="bignum"), - DRAFT6.optional_tests_of(name="zeroTerminatedFloats"), DRAFT6.optional_tests_of(name="ecmascript-regex"), + DRAFT6.optional_tests_of(name="format"), + DRAFT6.optional_tests_of(name="zeroTerminatedFloats"), Validator=Draft6Validator, format_checker=draft6_format_checker, skip=lambda test: ( @@ -187,9 +187,9 @@ TestDraft7 = DRAFT7.to_unittest_testcase( DRAFT7.tests(), DRAFT7.format_tests(), DRAFT7.optional_tests_of(name="bignum"), - DRAFT7.optional_tests_of(name="zeroTerminatedFloats"), DRAFT7.optional_tests_of(name="content"), DRAFT7.optional_tests_of(name="ecmascript-regex"), + DRAFT7.optional_tests_of(name="zeroTerminatedFloats"), Validator=Draft7Validator, format_checker=draft7_format_checker, skip=lambda test: ( |