1
0
mirror of https://github.com/home-assistant/core.git synced 2026-04-17 07:34:07 +01:00
Files
core/tests/components/pjlink/const.py
jtjart a18f3cba32 Add config flow to pjlink (#166073)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
2026-03-28 19:58:00 +01:00

22 lines
567 B
Python

"""Constants for the PJLink tests."""
from homeassistant.components.pjlink.const import (
CONF_ENCODING,
DEFAULT_ENCODING,
DEFAULT_PORT,
)
from homeassistant.const import CONF_HOST, CONF_PASSWORD, CONF_PORT
DEFAULT_DATA = {
CONF_HOST: "1.1.1.1",
CONF_PORT: DEFAULT_PORT,
CONF_PASSWORD: "test-password",
}
DEFAULT_DATA_WO_PORT = {CONF_HOST: "1.1.1.1", CONF_PASSWORD: "test-password"}
DEFAULT_DATA_W_ENCODING = {
CONF_HOST: "1.1.1.1",
CONF_PORT: DEFAULT_PORT,
CONF_PASSWORD: "test-password",
CONF_ENCODING: DEFAULT_ENCODING,
}