Skip to content

Commit dc4a6c3

Browse files
committed
Fix CI
1 parent b7cc8ff commit dc4a6c3

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/src/Controller/YubikeyTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ public function testOtpNoState(): void
6363
$c = new Controller\Yubikey($this->config, $this->session);
6464

6565
$this->expectException(Error\BadRequest::class);
66-
$this->expectExceptionMessage("BADREQUEST('%REASON%' => 'Missing AuthState parameter.')");
66+
$this->expectExceptionMessage(
67+
'{"errorCode":"BADREQUEST","%REASON%":"Missing AuthState parameter."}',
68+
);
6769

6870
$c->main($request);
6971
}

0 commit comments

Comments
 (0)