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

use shorthand (we have a use statement)

This commit is contained in:
till 2012-03-12 20:45:45 +01:00
parent 50f6445bc9
commit f06bdcbf16

View file

@ -44,7 +44,7 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
*/
public function testCredentials($url, $expect)
{
$svn = new SvnDriver($url, new \Composer\IO\NullIO);
$svn = new SvnDriver($url, new NullIO);
$this->assertEquals($expect, $svn->getSvnCredentialString());
}