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 92aeff5 commit 328e486Copy full SHA for 328e486
tests/Util/AutoloaderUtilTest.php
@@ -46,7 +46,7 @@ public function testGetPathForFutureClass()
46
foreach ($this->getPathForFutureClassTests() as $className => $expectedPath) {
47
$this->assertSame(
48
// the paths will start in vendor/composer and be relative
49
- $rootDir.'/vendor/composer/../../'.$expectedPath,
+ str_replace('\\', '/', $rootDir.'/vendor/composer/../../'.$expectedPath),
50
// normalize slashes for Windows comparison
51
str_replace('\\', '/', $autoloaderUtil->getPathForFutureClass($className)),
52
sprintf('class "%s" should have been in path "%s"', $className, $expectedPath)
0 commit comments