File tree Expand file tree Collapse file tree 1 file changed +2
-19
lines changed Expand file tree Collapse file tree 1 file changed +2
-19
lines changed Original file line number Diff line number Diff line change @@ -19,15 +19,7 @@ fun getFilter(schemaType: SchemaType?): TestFilter =
19
19
SchemaType .DRAFT_2020_12 -> TestFilterDraft202012
20
20
}
21
21
22
- object TestFilterDraft7 : TestFilter {
23
-
24
- override fun shouldSkipCase (caseDescription : String ): String? {
25
- return when {
26
- caseDescription.endsWith(" format" ) -> " the format keyword is not yet supported"
27
- else -> null
28
- }
29
- }
30
- }
22
+ object TestFilterDraft7 : TestFilter
31
23
32
24
object TestFilterDraft201909 : TestFilter {
33
25
@@ -37,7 +29,6 @@ object TestFilterDraft201909 : TestFilter {
37
29
38
30
override fun shouldSkipCase (caseDescription : String ): String? {
39
31
return when {
40
- caseDescription.endsWith(" format" ) -> " the format keyword is not yet supported"
41
32
caseDescription in IGNORE_CASES_WITH_MIN_CONTAINS_ZERO ->
42
33
" 'minContains' does not affect contains work - at least one element must match 'contains' schema"
43
34
else -> null
@@ -55,12 +46,4 @@ object TestFilterDraft201909 : TestFilter {
55
46
}
56
47
}
57
48
58
- object TestFilterDraft202012 : TestFilter {
59
-
60
- override fun shouldSkipCase (caseDescription : String ): String? {
61
- return when {
62
- caseDescription.endsWith(" format" ) -> " the format keyword is not yet supported"
63
- else -> null
64
- }
65
- }
66
- }
49
+ object TestFilterDraft202012 : TestFilter
You can’t perform that action at this time.
0 commit comments