mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
Remove unnecessary string literal concatenations (#30360)
This commit is contained in:
@@ -805,7 +805,7 @@ async def test_call_later(hass):
|
||||
now = datetime(2017, 12, 19, 15, 40, 0, tzinfo=dt_util.UTC)
|
||||
|
||||
with patch(
|
||||
"homeassistant.helpers.event" ".async_track_point_in_utc_time"
|
||||
"homeassistant.helpers.event.async_track_point_in_utc_time"
|
||||
) as mock, patch("homeassistant.util.dt.utcnow", return_value=now):
|
||||
async_call_later(hass, 3, action)
|
||||
|
||||
@@ -825,7 +825,7 @@ async def test_async_call_later(hass):
|
||||
now = datetime(2017, 12, 19, 15, 40, 0, tzinfo=dt_util.UTC)
|
||||
|
||||
with patch(
|
||||
"homeassistant.helpers.event" ".async_track_point_in_utc_time"
|
||||
"homeassistant.helpers.event.async_track_point_in_utc_time"
|
||||
) as mock, patch("homeassistant.util.dt.utcnow", return_value=now):
|
||||
remove = async_call_later(hass, 3, action)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user