Skip to content

Commit

Permalink
Fix Reference results file bug (#216)
Browse files Browse the repository at this point in the history
* - Fix Reference results file bug

* - Fix UT
  • Loading branch information
Samuelopez-ansys authored Sep 5, 2022
1 parent ab5e822 commit 0d2d579
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion aedttest/aedt_test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,8 +256,9 @@ def initialize_results(self) -> None:
self.report_data["projects"][project_name]["delta"] = 0
self.report_data["projects"][project_name]["avg"] = 0
if project_name in self.reference_data:
reference_path = Path(self.reference_data[project_name]["filepath"], project_name)
copy_path_to(
Path(self.reference_data[project_name]["filepath"], project_name),
reference_path.resolve(),
self.reference_folder,
)

Expand Down

0 comments on commit 0d2d579

Please sign in to comment.