Skip to content

Commit 86e47c8

Browse files
style: pre-commit fixes
1 parent d1f6c9a commit 86e47c8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/test_package.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,8 @@ def test_output_argument(monkeypatch, tmp_path, output_arg):
4949
}
5050

5151
cmakelists = Path("CMakeLists.txt")
52-
txt = (
53-
cmakelists.read_text()
54-
.replace("# OUTPUT_ARG", f"OUTPUT \"{output_values[output_arg]}\"")
52+
txt = cmakelists.read_text().replace(
53+
"# OUTPUT_ARG", f'OUTPUT "{output_values[output_arg]}"'
5554
)
5655
cmakelists.write_text(txt)
5756

0 commit comments

Comments
 (0)