Skip to content

Commit

Permalink
Make test more resiliant
Browse files Browse the repository at this point in the history
  • Loading branch information
pelmered committed Sep 16, 2024
1 parent b8ac5fa commit 7e22189
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Unit/RefreshTokenTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
);

expect($accessToken->getAccessToken())->toBe('this_is_my_access_token_from_body_refresh_token')
->and($accessToken->getExpiresIn())->toBe(3540)
->and($accessToken->getExpiresIn())->toBeBetween(3535, 3540)
->and($accessToken->getExpiresAt())->toBeInstanceOf(Carbon::class)
->and($accessToken->getCustomCallback())->toBeNull();
});
Expand Down

0 comments on commit 7e22189

Please sign in to comment.