Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
KapJI committed Sep 12, 2024
1 parent 1169768 commit c3d013c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def test_get_google_devices_json(
self, m_get_google_devices: NonCallableMock
) -> None:
"""Test getting google devices as JSON"""
device_id = faker.uuid4()
device_id = str(faker.uuid4())
device_name = faker.word()
local_auth_token = faker.local_auth_token()
ip_address = faker.ipv4()
Expand Down Expand Up @@ -433,7 +433,7 @@ def test_initialization__valid(self) -> None:

# With ip and port
device = Device(
device_id=faker.uuid4(),
device_id=str(faker.uuid4()),
device_name=faker.word(),
network_device=NetworkDevice(
faker.word(),
Expand All @@ -453,7 +453,7 @@ def test_initialization__invalid(self, m_log: NonCallableMock) -> None:

# Invalid local_auth_token
device = Device(
device_id=faker.uuid4(),
device_id=str(faker.uuid4()),
device_name=faker.word(),
local_auth_token=faker.word(),
)
Expand Down

0 comments on commit c3d013c

Please sign in to comment.