Skip to content

Commit

Permalink
tests: Fix Typo usbip -> usbid
Browse files Browse the repository at this point in the history
  • Loading branch information
holesch committed Aug 16, 2024
1 parent 4da45d1 commit 064d24f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,8 @@ async def test_attach(agent_io):
port_num = 1
proxy = (PLACE_1.host, PLACE_1.port)
usbip_target = ("usb.not-my-board.localhost", 3240)
usbip = PLACE_1.parts[0].usb["usb0"].usbid
assert agent_io.attached == {port_num: (proxy, usbip_target, usbip)}
usbid = PLACE_1.parts[0].usb["usb0"].usbid
assert agent_io.attached == {port_num: (proxy, usbip_target, usbid)}
local_port = 2222
tcp_target = tuple(
getattr(PLACE_1.parts[0].tcp["ssh"], k) for k in ("host", "port")
Expand Down

0 comments on commit 064d24f

Please sign in to comment.