@@ -136,7 +136,6 @@ void ifKeyEqualsFiltersExpected() {
136136 assertThatApplyingToKey (function , "boot" ).has (unsanitizedValue ());
137137 assertThatApplyingToKey (function , "xspring" ).has (unsanitizedValue ());
138138 assertThatApplyingToKey (function , "springx" ).has (unsanitizedValue ());
139- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
140139 }
141140
142141 @ Test
@@ -148,7 +147,6 @@ void ifKeyEndsWithFiltersExpected() {
148147 assertThatApplyingToKey (function , "boot" ).has (sanitizedValue ());
149148 assertThatApplyingToKey (function , "atest" ).has (sanitizedValue ());
150149 assertThatApplyingToKey (function , "bootx" ).has (unsanitizedValue ());
151- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
152150 }
153151
154152 @ Test
@@ -160,7 +158,6 @@ void ifKeyContainsFiltersExpected() {
160158 assertThatApplyingToKey (function , "boot" ).has (sanitizedValue ());
161159 assertThatApplyingToKey (function , "beet" ).has (sanitizedValue ());
162160 assertThatApplyingToKey (function , "spring" ).has (unsanitizedValue ());
163- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
164161 }
165162
166163 @ Test
@@ -171,7 +168,6 @@ void ifKeyMatchesIgnoringCaseFiltersExpected() {
171168 assertThatApplyingToKey (function , "XtestX" ).has (sanitizedValue ());
172169 assertThatApplyingToKey (function , "YY" ).has (sanitizedValue ());
173170 assertThatApplyingToKey (function , "xy" ).has (unsanitizedValue ());
174- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
175171 }
176172
177173 @ Test
@@ -182,7 +178,6 @@ void ifKeyMatchesWithRegexFiltersExpected() {
182178 assertThatApplyingToKey (function , "SPRING" ).has (sanitizedValue ());
183179 assertThatApplyingToKey (function , "BOOT" ).has (sanitizedValue ());
184180 assertThatApplyingToKey (function , "xspring" ).has (unsanitizedValue ());
185- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
186181 }
187182
188183 @ Test
@@ -192,7 +187,6 @@ void ifKeyMatchesWithPatternFiltersExpected() {
192187 assertThatApplyingToKey (function , "spin" ).has (sanitizedValue ());
193188 assertThatApplyingToKey (function , "SPRING" ).has (unsanitizedValue ());
194189 assertThatApplyingToKey (function , "xspring" ).has (unsanitizedValue ());
195- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
196190 }
197191
198192 @ Test
@@ -204,7 +198,6 @@ void ifKeyMatchesWithPredicatesFiltersExpected() {
204198 assertThatApplyingToKey (function , "BO" ).has (sanitizedValue ());
205199 assertThatApplyingToKey (function , "SPRING" ).has (unsanitizedValue ());
206200 assertThatApplyingToKey (function , "boot" ).has (unsanitizedValue ());
207- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
208201 }
209202
210203 @ Test
@@ -213,7 +206,6 @@ void ifKeyMatchesWithPredicateFiltersExpected() {
213206 assertThatApplyingToKey (function , "spring" ).has (sanitizedValue ());
214207 assertThatApplyingToKey (function , "spin" ).has (sanitizedValue ());
215208 assertThatApplyingToKey (function , "boot" ).has (unsanitizedValue ());
216- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
217209 }
218210
219211 @ Test
@@ -223,7 +215,6 @@ void ifValueStringMatchesWithRegexesFiltersExpected() {
223215 assertThatApplyingToValue (function , "SPRING" ).has (sanitizedValue ());
224216 assertThatApplyingToValue (function , "boot" ).has (sanitizedValue ());
225217 assertThatApplyingToValue (function , "other" ).has (unsanitizedValue ());
226- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
227218 }
228219
229220 @ Test
@@ -281,7 +272,6 @@ void ifValueMatchesWithPredicateFiltersExpected() {
281272 assertThatApplyingToValue (function , "spin" ).has (sanitizedValue ());
282273 assertThatApplyingToValue (function , "boot" ).has (unsanitizedValue ());
283274 assertThatApplyingToValue (function , 123 ).has (unsanitizedValue ());
284- assertThatApplyingToKey (function , null ).has (unsanitizedValue ());
285275 }
286276
287277 @ Test
0 commit comments