Skip to content

Commit 08f55a0

Browse files
committed
Fix access token state in test
1 parent 5de015e commit 08f55a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration/src/Repositories/AccessTokenRepositoryTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function setUp(): void
109109
'expires_at' => date('Y-m-d H:i:s', time() - 60), // expired...
110110
'user_id' => self::USER_ID,
111111
'client_id' => self::CLIENT_ID,
112-
'is_revoked' => [false, PDO::PARAM_BOOL],
112+
'is_revoked' => false,
113113
'auth_code_id' => self::AUTH_CODE_ID,
114114
'requested_claims' => '[]',
115115
];

0 commit comments

Comments
 (0)