Skip to content

Commit 6bec816

Browse files
committed
cs fix
1 parent 9fec921 commit 6bec816

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/system/Database/Migrations/MigrationRunnerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ public function testLatestWithLockingEnabledSucceeds(): void
502502
$this->assertTrue($runner->latest());
503503
$this->assertTrue($this->db->tableExists('foo'));
504504

505-
$this->dontSeeInDatabase('migrations_lock', ['lock_name' => 'migration_process']);
505+
$this->dontSeeInDatabase('migrations_lock', ['lock_name' => 'migration_process']);
506506
}
507507

508508
public function testRegressWithLockingEnabled(): void
@@ -534,11 +534,11 @@ public function testLockAcquisitionAndReleaseBasic(): void
534534

535535
// Should acquire lock successfully
536536
$this->assertTrue($acquireLock());
537-
$this->seeInDatabase('migrations_lock', ['lock_name' => 'migration_process']);
537+
$this->seeInDatabase('migrations_lock', ['lock_name' => 'migration_process']);
538538

539539
// Should release successfully
540540
$this->assertTrue($releaseLock());
541-
$this->dontSeeInDatabase('migrations_lock', ['lock_name' => 'migration_process']);
541+
$this->dontSeeInDatabase('migrations_lock', ['lock_name' => 'migration_process']);
542542
}
543543

544544
public function testLockPreventsConcurrentAccess(): void

0 commit comments

Comments
 (0)