We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75406e5 commit 922c4d7Copy full SHA for 922c4d7
tests/OutputFormatTest.php
@@ -44,8 +44,8 @@ public function testInValidFormats(string $formatName): void
44
$formatName = 'foo' . $formatName;
45
$this->expectException(FormatNotFoundException::class);
46
$this->expectExceptionMessage(
47
- 'Error formatter "' . $formatName . '" not found.'
48
- . ' Available error formatters are: ' . $this->availablesFormats
+ 'Error formatter "' . $formatName . '" is not implemented. Available error formatters are: '
+ . $this->availablesFormats
49
);
50
$this->assertTrue(OutputFormat::checkOutputFormatIsValid($formatName));
51
}
0 commit comments