mirror of
https://github.com/home-assistant/core.git
synced 2025-08-02 10:08:23 +00:00
tags fix for test
This commit is contained in:
parent
751316b9c1
commit
09b6490f2f
@ -822,7 +822,7 @@ async def test_squeezebox_search_favorites(
|
|||||||
blocking=True,
|
blocking=True,
|
||||||
)
|
)
|
||||||
configured_player.async_query.assert_called_once_with(
|
configured_player.async_query.assert_called_once_with(
|
||||||
"favorites", "items", "0", "1", "search:searchstring"
|
"favorites", "items", "0", "1", "", "search:searchstring"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -843,7 +843,7 @@ async def test_squeezebox_search_artists(
|
|||||||
blocking=True,
|
blocking=True,
|
||||||
)
|
)
|
||||||
configured_player.async_query.assert_called_once_with(
|
configured_player.async_query.assert_called_once_with(
|
||||||
"artists", "0", "1", "search:searchstring"
|
"artists", "0", "1", "", "search:searchstring"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -864,7 +864,7 @@ async def test_squeezebox_search_genres(
|
|||||||
blocking=True,
|
blocking=True,
|
||||||
)
|
)
|
||||||
configured_player.async_query.assert_called_once_with(
|
configured_player.async_query.assert_called_once_with(
|
||||||
"genres", "0", "1", "search:searchstring"
|
"genres", "0", "1", "", "search:searchstring"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
@ -906,7 +906,7 @@ async def test_squeezebox_search_playlists(
|
|||||||
blocking=True,
|
blocking=True,
|
||||||
)
|
)
|
||||||
configured_player.async_query.assert_called_once_with(
|
configured_player.async_query.assert_called_once_with(
|
||||||
"playlists", "0", "1", "search:searchstring"
|
"playlists", "0", "1", "", "search:searchstring"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user