Skip to content

Commit

Permalink
chore: enabled swoole tests for php 8.3, this extension is available now
Browse files Browse the repository at this point in the history
  • Loading branch information
jklab committed Nov 23, 2024
1 parent 84c3734 commit bcb7c27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/SwooleSequenceResolverTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class SwooleSequenceResolverTest extends TestCase
{
public function setUp(): void
{
if (version_compare(PHP_VERSION, '8.3') >= 0) {
$this->markTestSkipped('Swoole does not yet support PHP 8.3');
if (version_compare(PHP_VERSION, '8.4') >= 0) {
$this->markTestSkipped('Swoole does not yet support PHP 8.4');
}

if (! extension_loaded('swoole')) {
Expand Down

0 comments on commit bcb7c27

Please sign in to comment.