Index: testing_support/git_test_utils.py |
diff --git a/testing_support/git_test_utils.py b/testing_support/git_test_utils.py |
index 1e7065a227fab3c9a1ed543510250114b8171e42..3fe2b1e2c6db90c73785128e5dbf0424ce3def8d 100644 |
--- a/testing_support/git_test_utils.py |
+++ b/testing_support/git_test_utils.py |
@@ -283,7 +283,7 @@ class GitRepo(object): |
Args: |
schema - An instance of GitRepoSchema |
""" |
- self.repo_path = tempfile.mkdtemp(dir=self.BASE_TEMP_DIR) |
+ self.repo_path = os.path.realpath(tempfile.mkdtemp(dir=self.BASE_TEMP_DIR)) |
self.commit_map = {} |
self._date = datetime.datetime(1970, 1, 1, tzinfo=UTC) |