-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update amazon delivered subject for amazon.de (#1009)
* fix: update amazon delivered subject for amazon.de * update tests
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -803,7 +803,7 @@ async def test_amazon_search_results(hass, mock_imap_amazon_shipped): | |
"testfilename.jpg", | ||
"amazon.com", | ||
) | ||
assert result == 8 | ||
assert result == 9 | ||
|
||
|
||
@pytest.mark.asyncio | ||
|
@@ -822,7 +822,7 @@ async def test_amazon_search_delivered( | |
"Amazon email search address: ['[email protected]', '[email protected]', '[email protected]']" | ||
in caplog.text | ||
) | ||
assert result == 8 | ||
assert result == 9 | ||
assert mock_download_img.called | ||
|
||
|
||
|
@@ -838,7 +838,7 @@ async def test_amazon_search_delivered_it( | |
"testfilename.jpg", | ||
"amazon.it", | ||
) | ||
assert result == 8 | ||
assert result == 9 | ||
|
||
|
||
@pytest.mark.asyncio | ||
|