1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Make artifact paths in lock file cross-platform, fixes #3832

This commit is contained in:
Jordi Boggiano 2016-02-19 16:25:25 +00:00
parent 9e623f50e7
commit 8a2d1a2ee2
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ class ArtifactRepositoryTest extends TestCase
$repo = new ArtifactRepository($coordinates, new NullIO(), new Config());
foreach ($repo->getPackages() as $package) {
$this->assertTrue(strpos($package->getDistUrl(), $absolutePath) === 0);
$this->assertTrue(strpos($package->getDistUrl(), strtr($absolutePath, '\\', '/')) === 0);
}
}