Explorar el Código

update test (escapeshellarg())

till hace 13 años
padre
commit
ae15d8a5b6
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      tests/Composer/Test/Repository/Vcs/SvnDriverTest.php

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

@@ -28,9 +28,9 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
     public static function urlProvider()
     {
         return array(
-            array('http://till:test@svn.example.org/', ' --no-auth-cache --username "till" --password "test" '),
+            array('http://till:test@svn.example.org/', " --no-auth-cache --username 'till' --password 'test' "),
             array('http://svn.apache.org/', ''),
-            array('svn://johndoe@example.org', ' --no-auth-cache --username "johndoe" --password "" '),
+            array('svn://johndoe@example.org', " --no-auth-cache --username 'johndoe' --password '' "),
         );
     }