We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56d06d1 commit 875784bCopy full SHA for 875784b
test/ContextTest.php
@@ -45,7 +45,9 @@ public function testWillNotInstantiateWithoutComposerJsonAutoloadPSR4(): void
45
$fileSystem = vfsStream::setup('root', 0644, [
46
'composer.json' => '{"autoload":[]}',
47
]);
48
- $this->expectExceptionMessage(sprintf('%s/composer.json: key "autoload"."psr-4" not found', $fileSystem->url()));
+ $this->expectExceptionMessage(
49
+ sprintf('%s/composer.json: key "autoload"."psr-4" not found', $fileSystem->url())
50
+ );
51
52
new Context($fileSystem->url());
53
}
0 commit comments