mirror of
https://github.com/composer/composer
synced 2025-05-09 00:22:53 +00:00
Fix broken test on windows, fixes #4973
This commit is contained in:
parent
6f42b9c865
commit
b080a73840
2 changed files with 5 additions and 3 deletions
|
@ -356,8 +356,6 @@ class GitDownloaderTest extends TestCase
|
|||
|
||||
public function testUpdateDoesntThrowsRuntimeExceptionIfGitCommandFailsAtFirstButIsAbleToRecover()
|
||||
{
|
||||
$this->markTestIncomplete('This test is disabled until https://github.com/composer/composer/issues/4973 is resolved');
|
||||
|
||||
$expectedFirstGitUpdateCommand = $this->winCompat("git remote set-url composer '' && git fetch composer && git fetch --tags composer");
|
||||
$expectedSecondGitUpdateCommand = $this->winCompat("git remote set-url composer 'https://github.com/composer/composer' && git fetch composer && git fetch --tags composer");
|
||||
|
||||
|
@ -448,7 +446,7 @@ class GitDownloaderTest extends TestCase
|
|||
$cmd = str_replace('cd ', 'cd /D ', $cmd);
|
||||
$cmd = str_replace('composerPath', getcwd().'/composerPath', $cmd);
|
||||
|
||||
return strtr($cmd, "'", '"');
|
||||
return str_replace('""', '', strtr($cmd, "'", '"'));
|
||||
}
|
||||
|
||||
return $cmd;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue