Configurable SSH access to GitHub
Change-Id: I2ad5b17991d25ec7492d931c069cbcf314dba804
diff --git a/tests/base.py b/tests/base.py
index 1092c6e..56b1269 100755
--- a/tests/base.py
+++ b/tests/base.py
@@ -736,6 +736,9 @@
def getGitUrl(self, project):
return os.path.join(self.upstream_root, str(project))
+ def real_getGitUrl(self, project):
+ return super(FakeGithubConnection, self).getGitUrl(project)
+
def getProjectBranches(self, project):
"""Masks getProjectBranches since we don't have a real github"""