Skip to content

Commit 3070654

Browse files
committed
Try fix Windows checks by setting expiry > 0
1 parent fa48916 commit 3070654

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/client/test_auth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def expired_tokens():
8787
return OAuthToken(
8888
access_token="test_access_token",
8989
token_type="Bearer",
90-
expires_in=0,
90+
expires_in=-100, # Expired 100 seconds ago
9191
refresh_token="test_refresh_token",
9292
scope="read write",
9393
)

0 commit comments

Comments
 (0)