-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #314 from PeteRager/2023.3.0
2023.3.0
- Loading branch information
Showing
5 changed files
with
11 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,7 @@ | |
import pytest | ||
|
||
from homeassistant.exceptions import HomeAssistantError | ||
from homeassistant.const import ( | ||
CONF_TIMEOUT, | ||
EVENT_HOMEASSISTANT_STOP, | ||
) | ||
from homeassistant.const import CONF_TIMEOUT | ||
from homeassistant import config_entries | ||
from homeassistant.core import HomeAssistant | ||
|
||
|
@@ -320,7 +317,7 @@ async def test_async_setup_entry_multiple(hass, caplog): | |
|
||
data = { | ||
"cloud_connection": True, | ||
"email": "pete[email protected]", | ||
"email": "_pete[email protected]", | ||
"password": "rage", | ||
"app_id": "homeassistant", | ||
"create_sensors": True, | ||
|
@@ -354,7 +351,7 @@ async def test_async_setup_entry_multiple(hass, caplog): | |
assert manager._poll_interval == 1 | ||
assert manager._fast_poll_interval == 0.75 | ||
assert manager._fast_poll_count == 5 | ||
assert manager.api._username == "pete[email protected]" | ||
assert manager.api._username == "_pete[email protected]" | ||
assert manager.api._password == "rage" | ||
assert manager._pii_message_log is False | ||
assert manager._message_debug_logging is True | ||
|