Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehoffmann committed Sep 23, 2024
1 parent c6e3b42 commit f7e40f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit_tests/tools/test_linker.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def test_linker_c_with_libraries_and_post_flags(mock_c_compiler):
linker.link(
[Path("a.o")], Path("a.out"), libs=["customlib"], openmp=False)
link_run.assert_called_with(
[ "a.o", "-lcustom", "-jcustom", "-extra-flag", "-o", "a.out"])
["a.o", "-lcustom", "-jcustom", "-extra-flag", "-o", "a.out"])


def test_linker_c_with_libraries_and_pre_flags(mock_c_compiler):
Expand Down

0 comments on commit f7e40f3

Please sign in to comment.