1
0
mirror of https://github.com/home-assistant/core.git synced 2026-05-14 20:41:24 +01:00
Files
2026-03-25 17:53:04 +01:00

13 lines
299 B
Python

"""Constants for Leviton Decora Wi-Fi integration tests."""
from homeassistant.const import CONF_PASSWORD, CONF_USERNAME
TEST_USERNAME = "test@example.com"
TEST_PASSWORD = "test-password"
TEST_USER_ID = "12345"
USER_INPUT = {
CONF_USERNAME: TEST_USERNAME,
CONF_PASSWORD: TEST_PASSWORD,
}