We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46c203f commit a56fe7bCopy full SHA for a56fe7b
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