diff options
-rw-r--r-- | apps/oauth2/tests/Db/AccessTokenMapperTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/oauth2/tests/Db/AccessTokenMapperTest.php b/apps/oauth2/tests/Db/AccessTokenMapperTest.php index 7a7c5fd7b39..ebc6b55a382 100644 --- a/apps/oauth2/tests/Db/AccessTokenMapperTest.php +++ b/apps/oauth2/tests/Db/AccessTokenMapperTest.php @@ -56,7 +56,7 @@ class AccessTokenMapperTest extends TestCase { * @expectedException \OCA\OAuth2\Exceptions\AccessTokenNotFoundException */ public function testDeleteByClientId() { - $this->accessTokenMapper->deleteByClientId('TestId'); + $this->accessTokenMapper->deleteByClientId(1234); $token = new AccessToken(); $token->setClientId(1234); $token->setTokenId((string)time()); |