From 17e0c648644a8aad7ea364bace95060f6d603d07 Mon Sep 17 00:00:00 2001 From: Sebastian Bergmann Date: Thu, 18 Jan 2024 17:52:11 +0100 Subject: [PATCH] Fix --- src/TextUI/Command.php | 2 +- tests/end-to-end/migration/unsupported-schema.phpt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/TextUI/Command.php b/src/TextUI/Command.php index d3e281f7c51..e57535374da 100644 --- a/src/TextUI/Command.php +++ b/src/TextUI/Command.php @@ -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); } diff --git a/tests/end-to-end/migration/unsupported-schema.phpt b/tests/end-to-end/migration/unsupported-schema.phpt index 419adf3fec1..42a87e073d8 100644 --- a/tests/end-to-end/migration/unsupported-schema.phpt +++ b/tests/end-to-end/migration/unsupported-schema.phpt @@ -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--