From 9956ed4b02a900fef1f6a67480d94efaa2e75c24 Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 1 Jul 2021 00:06:43 -0700 Subject: [PATCH] [skip changelog] Update JSON output key name in integration test helper 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. --- test/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/conftest.py b/test/conftest.py index 2688ef7bdf8..f223f96d67d 100644 --- a/test/conftest.py +++ b/test/conftest.py @@ -196,7 +196,7 @@ def detected_boards(run_command): detected_boards = [] for port in json.loads(result.stdout): for board in port.get("boards", []): - fqbn = board.get("FQBN") + fqbn = board.get("fqbn") package, architecture, _id = fqbn.split(":") detected_boards.append( Board(