1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Per request from Jordi Boggiano (Seldaek) making Config 2nd parameter in supports()

This commit is contained in:
Gennady Feldman 2013-10-29 11:00:00 -04:00
parent 93ebfd54b1
commit e5045ce215
11 changed files with 13 additions and 13 deletions

View file

@ -141,6 +141,6 @@ class PerforceDriverTest extends \PHPUnit_Framework_TestCase
public function testSupportsReturnsFalseNoDeepCheck()
{
$this->expectOutputString('');
$this->assertFalse(PerforceDriver::supports($this->io, 'existing.url', $this->config));
$this->assertFalse(PerforceDriver::supports($this->io, $this->config, 'existing.url'));
}
}