Skip to content

Commit

Permalink
fixed the other format string and swapped it to an f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
waridh committed Aug 14, 2024
1 parent d85cede commit 4d0e7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_sim_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_root_defaults() -> None:
found_port = get_simulated_config(config_path, subsys)["port"]
assert (
found_port is not None
), "Expected port for {} to exist, but found None".format(subsys.name)
), "Expected port for {subsys.name} to exist, but found None"
assert (
int(found_port) == expected_port
), "Expected to see {expected_port}, but got {found_port}"

0 comments on commit 4d0e7c9

Please sign in to comment.