1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 08:32:56 +00:00

Use Upgrading for package installs too

This commit is contained in:
Jordi Boggiano 2020-02-11 17:51:02 +01:00
parent 9609729de7
commit 7e142b5d6b
No known key found for this signature in database
GPG key ID: 7BBD42C429EC80BC
4 changed files with 4 additions and 4 deletions

View file

@ -691,7 +691,7 @@ composer https://github.com/old/url (push)
$ioMock = $this->getMockBuilder('Composer\IO\IOInterface')->getMock();
$ioMock->expects($this->at(0))
->method('writeError')
->with($this->stringContains('Updating'));
->with($this->stringContains('Upgrading'));
$this->fs->ensureDirectoryExists($this->workingDir.'/.git');
$downloader = $this->getDownloaderMock($ioMock, null, $processExecutor);