File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -94,5 +94,4 @@ private class TestResultSerializer : JsonContentPolymorphicSerializer<TestResult
94
94
else -> error(" unknown object type" )
95
95
}
96
96
}
97
-
98
97
}
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ object TestFilterDraft201909 : TestFilter {
68
68
)
69
69
70
70
private val IGNORE_CASES_WITH_MIN_CONTAINS_ZERO = setOf (
71
- " minContains = 0 with no maxContains"
71
+ " minContains = 0 with no maxContains" ,
72
72
)
73
73
74
74
override fun shouldSkipCase (caseDescription : String ): String? {
@@ -85,9 +85,9 @@ object TestFilterDraft201909 : TestFilter {
85
85
override fun shouldSkipTest (caseDescription : String , testDescription : String ): String? {
86
86
return when {
87
87
caseDescription == " minContains = 0 with maxContains" &&
88
- testDescription == " empty data" ->
89
- " 'minContains' does not affect contains work -" +
90
- " at least one element must match 'contains' schema"
88
+ testDescription == " empty data" ->
89
+ " 'minContains' does not affect contains work -" +
90
+ " at least one element must match 'contains' schema"
91
91
else -> null
92
92
}
93
93
}
You can’t perform that action at this time.
0 commit comments