11 lines
194 B
Python
11 lines
194 B
Python
|
"""Constants for the MadVR tests."""
|
||
|
|
||
|
from homeassistant.const import CONF_HOST, CONF_PORT
|
||
|
|
||
|
MOCK_CONFIG = {
|
||
|
CONF_HOST: "192.168.1.1",
|
||
|
CONF_PORT: 44077,
|
||
|
}
|
||
|
|
||
|
MOCK_MAC = "00:11:22:33:44:55"
|