Skip to content

Commit 8b51968

Browse files
Merge branch '11.5' into 12.3
2 parents 07f8610 + 9e6b24e commit 8b51968

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
--TEST--
2-
#2448: Weird error when trying to run `Test` from `Test.php` but `Test.php` does not exist
2+
#2448: Weird error when trying to run `Test` from `SomeNonExistingTest.php` but `SomeNonExistingTest.php` does not exist
33
--FILE--
44
<?php declare(strict_types=1);
55
$_SERVER['argv'][] = '--do-not-cache-result';
66
$_SERVER['argv'][] = '--no-configuration';
7-
$_SERVER['argv'][] = 'Test.php';
7+
$_SERVER['argv'][] = 'SomeNonExistingTest.php';
88

99
require_once __DIR__ . '/../../bootstrap.php';
1010
(new PHPUnit\TextUI\Application)->run($_SERVER['argv']);
1111
--EXPECTF--
1212
PHPUnit %s by Sebastian Bergmann and contributors.
1313

14-
Test file "Test.php" not found
14+
Test file "SomeNonExistingTest.php" not found
1515
--CLEAN--
1616
<?php declare(strict_types=1);
1717
unlink(__DIR__ . '/2448/.phpunit.result.cache');

0 commit comments

Comments
 (0)