"""Constants for waze_travel_time tests.""" from homeassistant.components.waze_travel_time.const import ( CONF_DESTINATION, CONF_ORIGIN, ) from homeassistant.const import CONF_REGION MOCK_CONFIG = { CONF_ORIGIN: "location1", CONF_DESTINATION: "location2", CONF_REGION: "US", }