From 53d1fe4808c2d31c738e1e7c369a8b5754667336 Mon Sep 17 00:00:00 2001 From: Diego Marquez Date: Wed, 21 Feb 2024 11:12:59 -0500 Subject: [PATCH] Update library_generation/test/integration_tests.py Co-authored-by: Joe Wang <106995533+JoeWang1127@users.noreply.github.com> --- library_generation/test/integration_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library_generation/test/integration_tests.py b/library_generation/test/integration_tests.py index a30b165eaf..337f658e9b 100755 --- a/library_generation/test/integration_tests.py +++ b/library_generation/test/integration_tests.py @@ -116,7 +116,7 @@ def __pull_repo_to(cls, default_dest: Path, repo: str, committish: str) -> str: "Add /workspace to safe directories", ) dest = Path(dest_str) - repo = Repo(dest) + repo = Repo(Path(dest_in_docker)) else: dest = default_dest repo_dest = f"{golden_dir}/{repo}"