Skip to content

Commit

Permalink
Avoid writing '\' path separator to cpp file, which causes escapement…
Browse files Browse the repository at this point in the history
… issues
  • Loading branch information
Werni2A committed Jul 13, 2024
1 parent 01b063a commit 960cee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/py/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ def create_repo_cpp_unit_test(repo: Repository, path_repo: Path, path_unit_test:
unit_test = f"""
TEST_CASE("{repo.author} - {repo.project} - {file_name} : Check File {full_path}", "[Misc]")
TEST_CASE("{repo.author} - {repo.project} - {file_name} : Check File {full_path.as_posix()}", "[Misc]")
{{
configure_spdlog();
const fs::path inputFile{{"{full_path}"}};
const fs::path inputFile{{"{full_path.as_posix()}"}};
OOCP::ParserConfig cfg = get_parser_config();
Expand Down

0 comments on commit 960cee1

Please sign in to comment.