Fix missing comma

This commit is contained in:
sephster 2018-09-21 20:35:04 +01:00
parent da2742bea7
commit 9645119ccb
No known key found for this signature in database
GPG Key ID: 077754CA23023F4F

View File

@ -18,7 +18,7 @@ class PlainVerifierTest extends TestCase
{
$verifier = new PlainVerifier();
$this->assertTrue($verifier->verifyCodeChallenge('foo', 'foo');
$this->assertFalse($verifier->verifyCodeChallenge('foo', 'bar');
$this->assertTrue($verifier->verifyCodeChallenge('foo', 'foo'));
$this->assertFalse($verifier->verifyCodeChallenge('foo', 'bar'));
}
}