Browse Source

use shorthand (we have a use statement)

till 13 years ago
parent
commit
f06bdcbf16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tests/Composer/Test/Repository/Vcs/SvnDriverTest.php

+ 1 - 1
tests/Composer/Test/Repository/Vcs/SvnDriverTest.php

@@ -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());
     }