Skip to content

Commit 1e59e9c

Browse files
committed
fix CI
1 parent 07c6304 commit 1e59e9c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tests/Mutex/AbstractRedlockMutexTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ protected function setUp(): void
3535
$this->registerForTearDown($sleep);
3636
} catch (MockEnabledException $e) {
3737
// workaround for burn testing
38-
\assert($e->getMessage() === 'microtime is already enabled.Call disable() on the existing mock.');
38+
\assert($e->getMessage() === 'microtime is already enabled. Call disable() on the existing mock.');
3939
}
4040
}
4141

tests/Mutex/AbstractSpinlockMutexTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protected function setUp(): void
3434
$this->registerForTearDown($sleep);
3535
} catch (MockEnabledException $e) {
3636
// workaround for burn testing
37-
\assert($e->getMessage() === 'microtime is already enabled.Call disable() on the existing mock.');
37+
\assert($e->getMessage() === 'microtime is already enabled. Call disable() on the existing mock.');
3838
}
3939
}
4040

tests/Mutex/FixCiTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ protected function setUp(): void
3333
$this->registerForTearDown($sleep);
3434
} catch (MockEnabledException $e) {
3535
// workaround for burn testing
36-
\assert($e->getMessage() === 'microtime is already enabled.Call disable() on the existing mock.');
36+
\assert($e->getMessage() === 'microtime is already enabled. Call disable() on the existing mock.');
3737
}
3838
}
3939

tests/Util/LoopTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ protected function setUp(): void
3232
$this->registerForTearDown($sleep);
3333
} catch (MockEnabledException $e) {
3434
// workaround for burn testing
35-
\assert($e->getMessage() === 'microtime is already enabled.Call disable() on the existing mock.');
35+
\assert($e->getMessage() === 'microtime is already enabled. Call disable() on the existing mock.');
3636
}
3737
}
3838

0 commit comments

Comments
 (0)