Skip to content

Commit 17e0c64

Browse files
Fix
1 parent 76791ba commit 17e0c64

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/TextUI/Command.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ private function migrateConfiguration(string $filename): void
843843
$result = (new SchemaDetector)->detect($filename);
844844

845845
if (!$result->detected()) {
846-
print $filename . ' does not validate against any know schema.' . PHP_EOL;
846+
print $filename . ' does not validate against any known schema.' . PHP_EOL;
847847

848848
exit(TestRunner::EXCEPTION_EXIT);
849849
}

tests/end-to-end/migration/unsupported-schema.phpt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ PHPUnit\TextUI\Command::main();
1414
--EXPECTF--
1515
PHPUnit %s by Sebastian Bergmann and contributors.
1616

17-
%sphpunit.xml does not validate against any know schema.
17+
%sphpunit.xml does not validate against any known schema.
1818
--CLEAN--
1919
<?php declare(strict_types=1);
2020
unlink(sys_get_temp_dir() . '/phpunit.xml');

0 commit comments

Comments
 (0)