From 80c18db694e056f255ea3f33b6c0c226976423a5 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Wed, 13 Feb 2013 12:59:16 +0100 Subject: [PATCH] Fix tests --- tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php b/tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php index 6adbebeb4..4ebc863de 100644 --- a/tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php +++ b/tests/Composer/Test/Repository/Vcs/GitHubDriverTest.php @@ -146,6 +146,7 @@ class GitHubDriverTest extends \PHPUnit_Framework_TestCase $repoConfig = array( 'url' => $repoUrl, ); + $repoUrl = 'https://github.com/composer/packagist.git'; $gitHubDriver = new GitHubDriver($repoConfig, $io, $this->config, null, $remoteFilesystem); $gitHubDriver->initialize(); @@ -208,6 +209,7 @@ class GitHubDriverTest extends \PHPUnit_Framework_TestCase $repoConfig = array( 'url' => $repoUrl, ); + $repoUrl = 'https://github.com/composer/packagist.git'; $gitHubDriver = new GitHubDriver($repoConfig, $io, $this->config, null, $remoteFilesystem); $gitHubDriver->initialize();