Skip to content

Commit 968b9dd

Browse files
committed
Fix cs-fix and phpunit
1 parent ab8a8f6 commit 968b9dd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
tools: pecl, composer, php-cs-fixer
4141

4242
- name: Run PHP-CS-Fixer fix
43-
run: php-cs-fixer fix --dry-run --diff --ansi
43+
run: bin/php-cs-fixer-wrapper fix --dry-run --diff --ansi
4444

4545
phpstan:
4646
runs-on: ubuntu-latest

tests/SPC/builder/linux/SystemUtilTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SystemUtilTest extends TestCase
1515
public static function setUpBeforeClass(): void
1616
{
1717
if (PHP_OS_FAMILY !== 'Linux') {
18-
self::markTestIncomplete('This test is only for Linux');
18+
self::markTestSkipped('This test is only for Linux');
1919
}
2020
}
2121

tests/SPC/builder/macos/SystemUtilTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SystemUtilTest extends TestCase
1515
public static function setUpBeforeClass(): void
1616
{
1717
if (PHP_OS_FAMILY !== 'Darwin') {
18-
self::markTestIncomplete('This test is only for macOS');
18+
self::markTestSkipped('This test is only for macOS');
1919
}
2020
}
2121

0 commit comments

Comments
 (0)