Files
2025-09-24 18:43:50 +02:00

15 lines
269 B
Python

"""Test constants used in Cync tests."""
import time
import pycync
MOCKED_USER = pycync.User(
"test_token",
"test_refresh_token",
"test_authorize_string",
123456789,
expires_at=(time.time() * 1000) + 3600000,
)
MOCKED_EMAIL = "test@testuser.com"