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

Minor code improvements

This commit is contained in:
Simon Berger 2020-09-11 23:13:42 +02:00
parent 7053b6f761
commit 80a75e9959
10 changed files with 13 additions and 22 deletions

View file

@ -57,7 +57,7 @@ class GitLabTest extends TestCase
$this->equalTo($url = sprintf('http://%s/oauth/token', $this->origin)),
$this->anything()
)
->willReturn(new Response(array('url' => $url), 200, array(), sprintf('{"access_token": "%s", "token_type": "bearer", "expires_in": 7200}', $this->token)));
->willReturn(new Response(array('url' => $url), 200, array(), sprintf('{"access_token": "%s", "token_type": "bearer", "expires_in": 7200}', $this->token)))
;
$config = $this->getConfigMock();