Skip to content

Commit 28b7cba

Browse files
committed
fix: 🐛 Fix test
1 parent 1181f1b commit 28b7cba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def compare_reports(r1: Report, r2: Report) -> bool:
6464
def run_repo(report_dir: Path) -> bool:
6565
result = True
6666
repo_parts = report_dir.name.split('_')
67-
repo = GithubRepository(repo_parts[0], repo_parts[1], tag=repo_parts[2])
67+
repo = GithubRepository(repo_parts[0], repo_parts[1], repo_parts[2], tag=repo_parts[2])
6868
info(f'Scanning {repo}')
6969
new_report = scan_repo(repo)
7070
old_report = load_report(report_dir)

0 commit comments

Comments
 (0)