From ca69e4fd94c27f0afb2b2bb5e5fe315e3718eca8 Mon Sep 17 00:00:00 2001 From: Nikos Charalampidis Date: Wed, 29 Mar 2023 13:22:48 +0300 Subject: [PATCH] remove unnecessary custom phpunit xml added previously --- tests/Fixtures/phpunit-parallel-inheritance.xml | 13 ------------- tests/Visual/Parallel.php | 3 +-- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 tests/Fixtures/phpunit-parallel-inheritance.xml diff --git a/tests/Fixtures/phpunit-parallel-inheritance.xml b/tests/Fixtures/phpunit-parallel-inheritance.xml deleted file mode 100644 index 9aa63bd3..00000000 --- a/tests/Fixtures/phpunit-parallel-inheritance.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - ./Inheritance - ./Inheritance/Base - - - diff --git a/tests/Visual/Parallel.php b/tests/Visual/Parallel.php index a88dfafc..03b18ce1 100644 --- a/tests/Visual/Parallel.php +++ b/tests/Visual/Parallel.php @@ -23,6 +23,5 @@ test('parallel', function () use ($run) { })->skip(PHP_OS_FAMILY === 'Windows'); test('a parallel test can extend another test with same name', function () use ($run) { - expect($run('--configuration=tests/Fixtures/phpunit-parallel-inheritance.xml')) - ->toContain('1 passed'); + expect($run('tests/Fixtures/Inheritance'))->toContain('Tests: 1 skipped, 1 passed (1 assertions)'); });