diff --git a/custom_components/mail_and_packages/const.py b/custom_components/mail_and_packages/const.py index 9c3d2cf8..0435b060 100644 --- a/custom_components/mail_and_packages/const.py +++ b/custom_components/mail_and_packages/const.py @@ -103,6 +103,7 @@ "Entregado:", "Bezorgd:", "Livraison : Votre", + "Zugestellt: deine", ] AMAZON_SHIPMENT_TRACKING = [ "shipment-tracking", diff --git a/tests/test_helpers.py b/tests/test_helpers.py index fe0636d4..42d4bcf3 100644 --- a/tests/test_helpers.py +++ b/tests/test_helpers.py @@ -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: ['order-update@amazon.com', 'update-bestelling@amazon.com', 'versandbestaetigung@amazon.com']" 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