Skip to content

Commit 6d71252

Browse files
committed
fix cs
1 parent 92f0984 commit 6d71252

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Mutex/DistributedMutexTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testTooFewServerToAcquire(int $count, int $available): void
9393
$mutex = $this->createDistributedMutexMock($count);
9494

9595
$i = 0;
96-
$mutex->expects(self::atMost((int) floor($count / 2) + $count - $available))
96+
$mutex->expects(self::atMost((int) floor($count / 2) + $count - $available))
9797
->method('acquireMutex')
9898
->willReturnCallback(static function () use (&$i, $available) {
9999
if ($i++ < $available) {

0 commit comments

Comments
 (0)