Skip to content

Commit f1899c7

Browse files
committed
Update AuthorizerSpec.php
1 parent 9f89bfa commit f1899c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/LucaDegasperi/OAuth2Server/AuthorizerSpec.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ function it_is_initializable()
2424

2525
function it_issues_an_access_token(AuthorizationServer $issuer)
2626
{
27-
$issuer->issueAccessToken([])->willReturn('foo')->shouldBeCalled();
27+
$issuer->issueAccessToken()->willReturn('foo')->shouldBeCalled();
2828

29-
$this->issueAccessToken([])->shouldReturn('foo');
29+
$this->issueAccessToken()->shouldReturn('foo');
3030
}
3131

3232
function it_checks_the_auth_code_request_parameters(AuthorizationServer $issuer, AuthCodeGrant $authCodeGrant)

0 commit comments

Comments
 (0)