Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptouuuu committed Feb 20, 2021
1 parent 5136dcf commit d42286a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/SDK/SDKTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ public function testInterface()

return $jwt->headers()->get('kid') === 'AAAAAAAAAA' &&
$jwt->claims()->get('iss') === 'BBBBBBBBBB' &&
$jwt->claims()->get('iat') == new \DateTimeImmutable('2019-01-01T00:00:00+00:00') &&
$jwt->claims()->get('exp') == new \DateTimeImmutable('2019-01-01T00:01:00+00:00');
$jwt->claims()->get('iat')->format(\DateTime::ATOM) === '2019-01-01T00:00:00+00:00' &&
$jwt->claims()->get('exp')->format(\DateTime::ATOM) === '2019-01-01T00:01:00+00:00';
}))
->willReturn($response = $this->createMock(Response::class));
$response
Expand Down

0 comments on commit d42286a

Please sign in to comment.