1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-27 10:46:38 +01:00
Files
core/tests/components/cync/const.py
T
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"