summaryrefslogtreecommitdiff
path: root/jsonschema
diff options
context:
space:
mode:
authorJulian Berman <Julian@GrayVines.com>2022-08-28 12:56:48 +0300
committerJulian Berman <Julian@GrayVines.com>2022-08-28 12:56:48 +0300
commit6693f938af9916cc036dcb3c975544b9c5dc8de7 (patch)
tree5095ee1e101bf2c0e875d3c64b1b2e72c01e3e1e /jsonschema
parent6d39c4b253c4e5ac1c05529a011d4300f59d6060 (diff)
downloadjsonschema-6693f938af9916cc036dcb3c975544b9c5dc8de7.tar.gz
Remove the TODO for draft 7 content assertions.
See https://github.com/python-jsonschema/jsonschema/issues/593#issuecomment-1221527128
Diffstat (limited to 'jsonschema')
-rw-r--r--jsonschema/tests/test_jsonschema_test_suite.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/jsonschema/tests/test_jsonschema_test_suite.py b/jsonschema/tests/test_jsonschema_test_suite.py
index 75a4bc8..9c53d8c 100644
--- a/jsonschema/tests/test_jsonschema_test_suite.py
+++ b/jsonschema/tests/test_jsonschema_test_suite.py
@@ -263,7 +263,6 @@ TestDraft7 = DRAFT7.to_unittest_testcase(
DRAFT7.tests(),
DRAFT7.format_tests(),
DRAFT7.optional_tests_of(name="bignum"),
- DRAFT7.optional_tests_of(name="content"),
DRAFT7.optional_tests_of(name="cross-draft"),
DRAFT7.optional_tests_of(name="float-overflow"),
DRAFT7.optional_tests_of(name="non-bmp-regex"),
@@ -295,28 +294,6 @@ TestDraft7 = DRAFT7.to_unittest_testcase(
"not just immediate parent"
),
)(test)
- or skip(
- message=bug(593),
- subject="content",
- valid=False,
- case_description=(
- "validation of string-encoded content based on media type"
- ),
- )(test)
- or skip(
- message=bug(593),
- subject="content",
- valid=False,
- case_description="validation of binary string-encoding",
- )(test)
- or skip(
- message=bug(593),
- subject="content",
- valid=False,
- case_description=(
- "validation of binary-encoded media type documents"
- ),
- )(test)
),
)