Skip to content

Commit

Permalink
Don't bother testing token expiration time.
Browse files Browse the repository at this point in the history
  • Loading branch information
terrencegf committed May 25, 2017
1 parent ce7fbda commit 6637976
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/src/Provider/CILogonTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function testGetAccessToken()
]);

$this->assertEquals('mock_access_token', $token->getToken());
$this->assertGreaterThanOrEqual(time(), (int)$token->getExpires());
$this->assertNull($token->getExpires());
$this->assertEquals('mock_refresh_token', $token->getRefreshToken());
$this->assertNull($token->getResourceOwnerId());
}
Expand Down

0 comments on commit 6637976

Please sign in to comment.