@@ -303,13 +303,13 @@ public static function provideMatches(): iterable
303303 yield from [
304304 'foo bar not exist ' => [[], false ],
305305 'bar not exist ' => [['foo ' => null ], false ],
306- 'foo not exist ' => [['bar ' => null ], true ], // Strict Rule: false
307- 'foo bar null ' => [['foo ' => null , 'bar ' => null ], true ],
306+ 'foo not exist ' => [['bar ' => null ], false ],
307+ 'foo bar null ' => [['foo ' => null , 'bar ' => null ], false ], // Strict Rule: true
308308 'foo bar string match ' => [['foo ' => 'match ' , 'bar ' => 'match ' ], true ],
309309 'foo bar string not match ' => [['foo ' => 'match ' , 'bar ' => 'nope ' ], false ],
310- 'foo bar float match ' => [['foo ' => 1.2 , 'bar ' => 1.2 ], false ], // Strict Rule: true
310+ 'foo bar float match ' => [['foo ' => 1.2 , 'bar ' => 1.2 ], true ],
311311 'foo bar float not match ' => [['foo ' => 1.2 , 'bar ' => 2.3 ], false ],
312- 'foo bar bool match ' => [['foo ' => true , 'bar ' => true ], false ], // Strict Rule: true
312+ 'foo bar bool match ' => [['foo ' => true , 'bar ' => true ], true ],
313313 ];
314314 }
315315
@@ -348,9 +348,9 @@ public static function provideDiffers(): iterable
348348 'foo bar null ' => [['foo ' => null , 'bar ' => null ], false ],
349349 'foo bar string match ' => [['foo ' => 'match ' , 'bar ' => 'match ' ], false ],
350350 'foo bar string not match ' => [['foo ' => 'match ' , 'bar ' => 'nope ' ], true ],
351- 'foo bar float match ' => [['foo ' => 1.2 , 'bar ' => 1.2 ], true ], // Strict Rule: false
351+ 'foo bar float match ' => [['foo ' => 1.2 , 'bar ' => 1.2 ], false ],
352352 'foo bar float not match ' => [['foo ' => 1.2 , 'bar ' => 2.3 ], true ],
353- 'foo bar bool match ' => [['foo ' => true , 'bar ' => true ], true ], // Strict Rule: false
353+ 'foo bar bool match ' => [['foo ' => true , 'bar ' => true ], false ],
354354 ];
355355 }
356356
0 commit comments