Skip to content

Commit 1928dc4

Browse files
committed
fixed string error
1 parent 7d9c4e1 commit 1928dc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/models/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ def group_by_benchmarks(self, benchmark_keys:list[BenchmarkKey], benchmark_repla
484484
test_results_by_benchmark = defaultdict(TestResults)
485485
benchmark_module_path = {}
486486
for benchmark_key in benchmark_keys:
487-
benchmark_module_path[benchmark_key] = module_name_from_file_path(benchmark_replay_test_dir.resolve() / f"test_{benchmark_key.module_path.replace(".", "_")}__replay_test_", project_root)
487+
benchmark_module_path[benchmark_key] = module_name_from_file_path(benchmark_replay_test_dir.resolve() / f"test_{benchmark_key.module_path.replace('.', '_')}__replay_test_", project_root)
488488
for test_result in self.test_results:
489489
if (test_result.test_type == TestType.REPLAY_TEST):
490490
for benchmark_key, module_path in benchmark_module_path.items():

0 commit comments

Comments
 (0)