Skip to content

Commit

Permalink
Fix config name test
Browse files Browse the repository at this point in the history
  • Loading branch information
masaccio committed Feb 27, 2023
1 parent 3fc3626 commit aa00837
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
from custom_components.kingspan_watchman_sensit.const import (
CONF_PASSWORD,
CONF_USERNAME,
CONF_NAME,
)

MOCK_CONFIG = {CONF_USERNAME: "test@example.com", CONF_PASSWORD: "s3cret"}
MOCK_CONFIG = {
CONF_NAME: "Kingspan Watchman SENSiT",
CONF_USERNAME: "test@example.com",
CONF_PASSWORD: "s3cret",
}

MOCK_GET_DATA_METHOD = (
"custom_components.kingspan_watchman_sensit.SENSiTApiClient._get_tank_data"
Expand Down

0 comments on commit aa00837

Please sign in to comment.