Skip to content

Commit a5fd631

Browse files
committed
Fix position of comment
The comment was somehow moved to a different line than the code it refers to.
1 parent 2dc4afd commit a5fd631

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compilesketches/tests/test_compilesketches.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2906,9 +2906,9 @@ def test_cli_core_list_platform_list(cli_version, data, assertion):
29062906
("0.17.0", "core list", "ID", "ID"), # ==
29072907
("0.14.0-rc2", "core list", "ID", "ID"), # <
29082908
("1.0.0", "foo", "ID", "ID"), # Command has no translation
2909-
("1.0.0", "core list", "foo", "foo"),
2909+
("1.0.0", "core list", "foo", "foo"), # Key has no translation
29102910
],
2911-
) # Key has no translation
2911+
)
29122912
def test_cli_json_key(cli_version, command, original_key, expected_key):
29132913
compile_sketches = get_compilesketches_object(cli_version=cli_version)
29142914

0 commit comments

Comments
 (0)