mirror of
https://github.com/home-assistant/core.git
synced 2025-05-01 04:37:52 +00:00
8 lines
187 B
Python
8 lines
187 B
Python
"""Helper methods for Plex tests."""
|
|
|
|
|
|
def trigger_plex_update(mock_websocket):
|
|
"""Call the websocket callback method."""
|
|
callback = mock_websocket.call_args[0][1]
|
|
callback()
|