Skip to content

Commit b370b3f

Browse files
committed
Run Rector
1 parent 16cccf7 commit b370b3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/Database/Live/UpsertTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ public function testGetCompiledUpsertBatch()
262262
->getCompiledUpsert();
263263

264264
$pos = strpos($sql, '[email protected]');
265-
$this->assertTrue(($pos !== false));
265+
$this->assertNotFalse($pos);
266266

267267
$pos = strpos($sql, '[email protected]');
268-
$this->assertTrue(($pos !== false));
268+
$this->assertNotFalse($pos);
269269
}
270270

271271
public function testUpsertCauseConstraintError()

0 commit comments

Comments
 (0)