@@ -177,15 +177,15 @@ public function testOrWhereNotLike(): void
177
177
$ this ->getConnection ()->unprepared ('CREATE TABLE example (str text) ' );
178
178
179
179
$ queries = $ this ->withQueryLog (function (): void {
180
- $ this ->getConnection ()->table ('example ' )->orWhereNotLike ('str ' , 'ZsbBUJmR ' )->orWhereNotLike ('str ' , '7Cc1Uf8t ' )->get ();
181
- $ this ->getConnection ()->table ('example ' )->orWhereNotLike ('str ' , 'OamekKIC ' , true )->orWhereNotLike ('str ' , 'HmC3xURl ' , true )->get ();
180
+ $ this ->getConnection ()->table ('example ' )->orWhereNotLike ('str ' , 'AERLFW4s ' )->orWhereNotLike ('str ' , 'sPtXxruW ' )->get ();
181
+ $ this ->getConnection ()->table ('example ' )->orWhereNotLike ('str ' , 'EWnGRRc5 ' , true )->orWhereNotLike ('str ' , 'wihuWcph ' , true )->get ();
182
182
});
183
183
$ this ->assertEquals (
184
184
['select * from "example" where "str"::text not ilike ? or "str"::text not ilike ? ' , 'select * from "example" where "str"::text not like ? or "str"::text not like ? ' ],
185
185
array_column ($ queries , 'query ' ),
186
186
);
187
187
$ this ->assertEquals (
188
- [['ZsbBUJmR ' , '7Cc1Uf8t ' ], ['OamekKIC ' , 'HmC3xURl ' ]],
188
+ [['AERLFW4s ' , 'sPtXxruW ' ], ['EWnGRRc5 ' , 'wihuWcph ' ]],
189
189
array_column ($ queries , 'bindings ' ),
190
190
);
191
191
}
@@ -354,15 +354,15 @@ public function testWhereNotLike(): void
354
354
$ this ->getConnection ()->unprepared ('CREATE TABLE example (str text) ' );
355
355
356
356
$ queries = $ this ->withQueryLog (function (): void {
357
- $ this ->getConnection ()->table ('example ' )->whereNotLike ('str ' , 'UkAymQlg ' )->get ();
358
- $ this ->getConnection ()->table ('example ' )->whereNotLike ('str ' , 'IcuC5Cqz ' , true )->get ();
357
+ $ this ->getConnection ()->table ('example ' )->whereNotLike ('str ' , 'mgb7DtKz ' )->get ();
358
+ $ this ->getConnection ()->table ('example ' )->whereNotLike ('str ' , 'tpx6Bxpm ' , true )->get ();
359
359
});
360
360
$ this ->assertEquals (
361
361
['select * from "example" where "str"::text not ilike ? ' , 'select * from "example" where "str"::text not like ? ' ],
362
362
array_column ($ queries , 'query ' ),
363
363
);
364
364
$ this ->assertEquals (
365
- [['UkAymQlg ' ], ['IcuC5Cqz ' ]],
365
+ [['mgb7DtKz ' ], ['tpx6Bxpm ' ]],
366
366
array_column ($ queries , 'bindings ' ),
367
367
);
368
368
}
0 commit comments