Skip to content

Commit

Permalink
Fix position of comment
Browse files Browse the repository at this point in the history
The comment was somehow moved to a different line than the code it refers to.
  • Loading branch information
per1234 committed Jun 13, 2024
1 parent 2dc4afd commit a5fd631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compilesketches/tests/test_compilesketches.py
Original file line number Diff line number Diff line change
Expand Up @@ -2906,9 +2906,9 @@ def test_cli_core_list_platform_list(cli_version, data, assertion):
("0.17.0", "core list", "ID", "ID"), # ==
("0.14.0-rc2", "core list", "ID", "ID"), # <
("1.0.0", "foo", "ID", "ID"), # Command has no translation
("1.0.0", "core list", "foo", "foo"),
("1.0.0", "core list", "foo", "foo"), # Key has no translation
],
) # Key has no translation
)
def test_cli_json_key(cli_version, command, original_key, expected_key):
compile_sketches = get_compilesketches_object(cli_version=cli_version)

Expand Down

0 comments on commit a5fd631

Please sign in to comment.