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 81bffdf commit 278cabdCopy full SHA for 278cabd
src/Symfony/Component/Process/Tests/ExecutableFinderTest.php
@@ -166,9 +166,9 @@ public function testFindBuiltInCommandOnWindows()
166
}
167
168
$finder = new ExecutableFinder();
169
- $this->assertSame('rmdir', $finder->find('RMDIR'));
170
- $this->assertSame('cd', $finder->find('cd'));
171
- $this->assertSame('move', $finder->find('MoVe'));
+ $this->assertSame('rmdir', strtolower($finder->find('RMDIR')));
+ $this->assertSame('cd', strtolower($finder->find('cd')));
+ $this->assertSame('move', strtolower($finder->find('MoVe')));
172
173
174
private function assertSamePath($expected, $tested)
0 commit comments