Remove useless parentheses
parent
490f3ccd95
commit
a17f051e29
|
@ -231,7 +231,7 @@ class FileDownloaderTest extends TestCase
|
|||
->will($this->returnValue(array($distUrl)));
|
||||
|
||||
$ioMock = $this->getMock('Composer\IO\IOInterface');
|
||||
$ioMock->expects(($this->at(0)))
|
||||
$ioMock->expects($this->at(0))
|
||||
->method('writeError')
|
||||
->with($this->stringContains('Downgrading'));
|
||||
|
||||
|
|
|
@ -638,7 +638,7 @@ composer https://github.com/old/url (push)
|
|||
->will($this->returnValue(0));
|
||||
|
||||
$ioMock = $this->getMock('Composer\IO\IOInterface');
|
||||
$ioMock->expects(($this->at(0)))
|
||||
$ioMock->expects($this->at(0))
|
||||
->method('writeError')
|
||||
->with($this->stringContains('Downgrading'));
|
||||
|
||||
|
@ -677,7 +677,7 @@ composer https://github.com/old/url (push)
|
|||
->will($this->returnValue(0));
|
||||
|
||||
$ioMock = $this->getMock('Composer\IO\IOInterface');
|
||||
$ioMock->expects(($this->at(0)))
|
||||
$ioMock->expects($this->at(0))
|
||||
->method('writeError')
|
||||
->with($this->stringContains('updating'));
|
||||
|
||||
|
|
Loading…
Reference in New Issue