Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
silamon committed Sep 24, 2024
1 parent a5988ee commit 3074fe8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/linkplay/test_bridge.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Test bridge functionality."""

from dataclasses import asdict
from typing import Any
from unittest.mock import AsyncMock, patch

Expand Down Expand Up @@ -64,7 +63,7 @@ async def test_deserialize_device():
bridge = AsyncMock()
device = LinkPlayDevice(bridge)

asdict(device)
device.to_dict()


async def test_player_update_status():
Expand Down Expand Up @@ -275,7 +274,7 @@ async def test_deserialize_player():
bridge = AsyncMock()
player = LinkPlayPlayer(bridge)

asdict(player)
player.to_dict()


async def test_multiroom_setup():
Expand Down

0 comments on commit 3074fe8

Please sign in to comment.