mirror of
https://github.com/composer/composer
synced 2025-05-09 16:42:57 +00:00
Update tests to expect correct URLs for private dist downloads
This commit is contained in:
parent
120f52c632
commit
e3838bbc1f
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ class GitHubDriverTest extends \PHPUnit_Framework_TestCase
|
|||
|
||||
$dist = $gitHubDriver->getDist($identifier);
|
||||
$this->assertEquals('zip', $dist['type']);
|
||||
$this->assertEquals('https://github.com/composer/packagist/archive/v0.0.0.zip', $dist['url']);
|
||||
$this->assertEquals('https://api.github.com/repos/composer/packagist/zipball/v0.0.0', $dist['url']);
|
||||
$this->assertEquals('v0.0.0', $dist['reference']);
|
||||
|
||||
$source = $gitHubDriver->getSource($identifier);
|
||||
|
@ -113,7 +113,7 @@ class GitHubDriverTest extends \PHPUnit_Framework_TestCase
|
|||
|
||||
$dist = $gitHubDriver->getDist($sha);
|
||||
$this->assertEquals('zip', $dist['type']);
|
||||
$this->assertEquals('https://github.com/composer/packagist/archive/v0.0.0.zip', $dist['url']);
|
||||
$this->assertEquals('https://api.github.com/repos/composer/packagist/zipball/v0.0.0', $dist['url']);
|
||||
$this->assertEquals('v0.0.0', $dist['reference']);
|
||||
|
||||
$source = $gitHubDriver->getSource($sha);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue