Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ComposerIntegration/VendorCleanup.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public function __invoke(Composer $composer): void
if (! is_array($vendorContents)) {
$this->output->writeln(
sprintf(
'<comment>Vendor directory (vendor-dir config) %s seemed invalid?/comment>',
'<comment>Vendor directory (vendor-dir config) %s seemed invalid?</comment>',
$vendorDir,
),
OutputInterface::VERBOSITY_VERY_VERBOSE,
Expand Down
2 changes: 1 addition & 1 deletion test/unit/ComposerIntegration/VendorCleanupTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function testInvalidVendorDirectory(): void
->expects(self::once())
->method('writeln')
->with(
'<comment>Vendor directory (vendor-dir config) /path/that/does/not/exist seemed invalid?/comment>',
'<comment>Vendor directory (vendor-dir config) /path/that/does/not/exist seemed invalid?</comment>',
OutputInterface::VERBOSITY_VERY_VERBOSE,
);

Expand Down