Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Jan 18, 2024
1 parent 76791ba commit 17e0c64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/TextUI/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ private function migrateConfiguration(string $filename): void
$result = (new SchemaDetector)->detect($filename);

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

exit(TestRunner::EXCEPTION_EXIT);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/migration/unsupported-schema.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ PHPUnit\TextUI\Command::main();
--EXPECTF--
PHPUnit %s by Sebastian Bergmann and contributors.

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

0 comments on commit 17e0c64

Please sign in to comment.