@@ -1188,7 +1188,7 @@ public function testWhereFulltextPostgres()
1188
1188
public function testWhereMultiple ()
1189
1189
{
1190
1190
$ builder = $ this ->getBuilder ();
1191
- $ builder ->select ('* ' )->from ('users ' )->whereMultiple (['last_name ' , 'email ' ], 'LIKE ' ,'%Otwell% ' );
1191
+ $ builder ->select ('* ' )->from ('users ' )->whereMultiple (['last_name ' , 'email ' ], 'like ' ,'%Otwell% ' );
1192
1192
$ this ->assertSame ('select * from "users" where ("last_name" like ? or "email" like ?) ' , $ builder ->toSql ());
1193
1193
$ this ->assertEquals (['%Otwell% ' , '%Otwell% ' ], $ builder ->getBindings ());
1194
1194
@@ -1203,8 +1203,8 @@ public function testWhereMultiple()
1203
1203
$ this ->assertEquals (['%Otwell% ' , '%Otwell% ' ], $ builder ->getBindings ());
1204
1204
1205
1205
$ builder = $ this ->getBuilder ();
1206
- $ builder ->select ('* ' )->from ('users ' )->whereMultiple (['last_name ' , 'email ' ],'NOT LIKE ' , '%Otwell% ' , 'and ' );
1207
- $ this ->assertSame ('select * from "users" where ("last_name" NOT LIKE ? and "email" NOT LIKE ?) ' , $ builder ->toSql ());
1206
+ $ builder ->select ('* ' )->from ('users ' )->whereMultiple (['last_name ' , 'email ' ],'not like ' , '%Otwell% ' , 'and ' );
1207
+ $ this ->assertSame ('select * from "users" where ("last_name" not like ? and "email" not like ?) ' , $ builder ->toSql ());
1208
1208
$ this ->assertEquals (['%Otwell% ' , '%Otwell% ' ], $ builder ->getBindings ());
1209
1209
}
1210
1210
0 commit comments