Skip to content

Commit 2979202

Browse files
authored
[skip changelog] Update JSON output key name in integration test helper (#1340)
The key names used in Arduino CLI's JSON output were made consistent and standardized. One of the helper functions for the integration tests was not updated accordingly. This was missed because it is only used when running the tests locally due to requiring a board to be connected to the computer.
1 parent 35bec19 commit 2979202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def detected_boards(run_command):
196196
detected_boards = []
197197
for port in json.loads(result.stdout):
198198
for board in port.get("boards", []):
199-
fqbn = board.get("FQBN")
199+
fqbn = board.get("fqbn")
200200
package, architecture, _id = fqbn.split(":")
201201
detected_boards.append(
202202
Board(

0 commit comments

Comments
 (0)