Skip to content

Commit 6d8bced

Browse files
committed
minor #215 Fix tests (chalasr)
This PR was merged into the 0.9-dev branch. Discussion ---------- Fix tests Commits ------- 5a582ce Fix tests
2 parents 161ba05 + 5a582ce commit 6d8bced

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Integration/AuthorizationServerTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -700,8 +700,8 @@ public function testFailedAuthorizationWithInvalidRedirectUri(): void
700700
$response = $this->handleTokenRequest($request);
701701

702702
// Response assertions.
703-
$this->assertSame('invalid_client', $response['error']);
704-
$this->assertSame('Client authentication failed', $response['error_description']);
703+
$this->assertSame('invalid_request', $response['error']);
704+
$this->assertSame('The request is missing a required parameter, includes an invalid parameter value, includes a parameter more than once, or is otherwise malformed.', $response['error_description']);
705705
}
706706

707707
public function testSuccessfulImplicitRequest(): void

0 commit comments

Comments
 (0)