diff --git a/tests/.snapshots/success.txt b/tests/.snapshots/success.txt index b9243353..62d136c2 100644 --- a/tests/.snapshots/success.txt +++ b/tests/.snapshots/success.txt @@ -1092,7 +1092,6 @@ WARN Tests\Features\SkipOnPhp ✓ it can run on php version - - it can skip on specific php version → This test is skipped on PHP [==8.3.1]. ✓ it can run on specific php version - it can skip on php versions depending on constraint → This test is skipped on PHP [>=7.4.0]. @@ -1374,4 +1373,4 @@ WARN Tests\Visual\Version - visual snapshot of help command output - Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 21 skipped, 978 passed (2304 assertions) + Tests: 2 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 24 skipped, 970 passed (2295 assertions) \ No newline at end of file diff --git a/tests/Features/SkipOnPhp.php b/tests/Features/SkipOnPhp.php index ad528954..15687d9e 100644 --- a/tests/Features/SkipOnPhp.php +++ b/tests/Features/SkipOnPhp.php @@ -4,10 +4,6 @@ it('can run on php version') ->skipOnPhp('<=7.4.0') ->assertTrue(true); -it('can skip on specific php version') - ->skipOnPhp(PHP_VERSION) - ->assertTrue(false); - it('can run on specific php version') ->skipOnPhp('7.4.0') ->assertTrue(true); diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index 78053666..a91e2bb3 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -18,7 +18,7 @@ $run = function () { test('parallel', function () use ($run) { expect($run('--exclude-group=integration')) - ->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 17 skipped, 965 passed (2285 assertions)') + ->toContain('Tests: 1 deprecated, 4 warnings, 5 incomplete, 2 notices, 13 todos, 16 skipped, 965 passed (2285 assertions)') ->toContain('Parallel: 3 processes'); })->skipOnWindows();