Skip to content

Commit 3f19751

Browse files
committed
fixed tests
1 parent aea9fe1 commit 3f19751

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/test_board.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -353,15 +353,15 @@
353353
]
354354
}
355355
],
356-
"identification_prefs": [
356+
"identification_properties": [
357357
{
358-
"usb_id": {
358+
"properties": {
359359
"vid": "0x2341",
360360
"pid": "0x8057"
361361
}
362362
},
363363
{
364-
"usb_id": {
364+
"properties": {
365365
"vid": "0x2341",
366366
"pid": "0x0057"
367367
}
@@ -483,8 +483,8 @@ def test_board_details(run_command):
483483
assert result["official"] == gold_board_details["official"]
484484
assert result["package"] == gold_board_details["package"]
485485
assert result["platform"] == gold_board_details["platform"]
486-
for usb_id in gold_board_details["identification_prefs"]:
487-
assert usb_id in result["identification_prefs"]
486+
for usb_id in gold_board_details["identification_properties"]:
487+
assert usb_id in result["identification_properties"]
488488
for programmer in gold_board_details["programmers"]:
489489
assert programmer in result["programmers"]
490490

0 commit comments

Comments
 (0)