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

Fixed tests

This commit is contained in:
bboer 2012-08-31 08:12:20 +02:00
parent d1a452b00b
commit 00361e0087
3 changed files with 26 additions and 6 deletions

View file

@ -45,7 +45,11 @@ class SvnDriverTest extends \PHPUnit_Framework_TestCase
'home' => sys_get_temp_dir() . '/composer-test',
),
));
$svn = new SvnDriver('http://till:secret@corp.svn.local/repo', $console, $config, $process);
$repoConfig = array(
'url' => 'http://till:secret@corp.svn.local/repo',
);
$svn = new SvnDriver($repoConfig, $console, $config, $process);
$svn->initialize();
}