Skip to content

Commit 3127767

Browse files
committed
chore: fix lint errors for new APIs
1 parent 8e43167 commit 3127767

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/e2e/test_local_session.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ def handle_write(data: bytes) -> None:
5050

5151
@pytest.fixture(name="local_channel")
5252
async def local_channel_fixture(mock_create_local_connection: None) -> AsyncGenerator[LocalChannel, None]:
53-
with patch("roborock.devices.local_channel.get_next_int", return_value=TEST_CONNECT_NONCE):
53+
with patch(
54+
"roborock.devices.local_channel.get_next_int", return_value=TEST_CONNECT_NONCE, device_uid=TEST_DEVICE_UID
55+
):
5456
channel = LocalChannel(host=TEST_HOST, local_key=LOCAL_KEY)
5557
yield channel
5658
channel.close()

0 commit comments

Comments
 (0)