Skip to content

Commit a7567c7

Browse files
committed
De-Escape & in test rendering
1 parent e763d0c commit a7567c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-scripts/build_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def _create_arg_parser() -> argparse.ArgumentParser:
4949

5050
def _write_path(file_contents: str, output_path: os.PathLike) -> None:
5151
with open(output_path, "w") as file:
52-
file.write(file_contents)
52+
file.write(file_contents.replace('&', '&'))
5353
file.write("\n")
5454

5555

0 commit comments

Comments
 (0)