Skip to content

Commit 576ae0c

Browse files
committed
Fix error message (php version mismash 🤦)
1 parent 3c5f505 commit 576ae0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/Service/PackageSynchronizer/ComposerPackageSynchronizerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public function testSynchronizeError(): void
6969
{
7070
$this->synchronizer->synchronize($package = PackageMother::withOrganization('artifact', '/non/exist/path', 'buddy'));
7171

72-
self::assertEquals('Error: RecursiveDirectoryIterator::__construct(/non/exist/path): Failed to open directory: No such file or directory', $this->getProperty($package, 'lastSyncError'));
72+
self::assertEquals('Error: RecursiveDirectoryIterator::__construct(/non/exist/path): failed to open dir: No such file or directory', $this->getProperty($package, 'lastSyncError'));
7373
}
7474

7575
public function testSynchronizePackageFromArtifacts(): void

0 commit comments

Comments
 (0)