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

update test (escapeshellarg())

This commit is contained in:
till 2012-03-04 19:53:53 +01:00
parent 9ecbc5176e
commit ae15d8a5b6

View file

@ -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 '' "),
);
}