From 987cf8b9d0b513d4ef184811aac2c75804140cfb Mon Sep 17 00:00:00 2001 From: G Johansson Date: Sat, 26 Nov 2022 19:01:22 +0100 Subject: [PATCH] Fix pushbullet test that break CI (#82744) pushbullet break ci --- tests/components/pushbullet/test_notify.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/components/pushbullet/test_notify.py b/tests/components/pushbullet/test_notify.py index 2773679f22a..a9c93e88bdb 100644 --- a/tests/components/pushbullet/test_notify.py +++ b/tests/components/pushbullet/test_notify.py @@ -157,11 +157,14 @@ async def test_pushbullet_push_mixed(hass, requests_mock): ) entry.add_to_hass(hass) assert await hass.config_entries.async_setup(entry.entry_id) + await hass.async_block_till_done() + data = { "title": "Test Title", "message": "Test Message", "target": ["device/DESKTOP", "email/user@host.net"], } + await hass.services.async_call(NOTIFY_DOMAIN, "pushbullet", data) await hass.async_block_till_done()