aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/helper_test.py
diff options
context:
space:
mode:
authorGravatar Oliver Chang <oliverchang@users.noreply.github.com>2021-09-21 10:10:06 +1000
committerGravatar GitHub <noreply@github.com>2021-09-21 10:10:06 +1000
commit77d6eb33bc462d19b719b11a90cd69819d638d6d (patch)
tree30814973beb6e94fc8ab845fae5899d8fa8d6695 /infra/helper_test.py
parent219af13b2b603ca36887bf3ef057b478b0bed6bf (diff)
Helper fixes for external projects. (#6458)
- Add ":v1" suffix to Dockerfile template. - Support relative paths for external project directories.
Diffstat (limited to 'infra/helper_test.py')
-rw-r--r--infra/helper_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/helper_test.py b/infra/helper_test.py
index bb365037..951eba47 100644
--- a/infra/helper_test.py
+++ b/infra/helper_test.py
@@ -165,7 +165,7 @@ class ProjectTest(fake_filesystem_unittest.TestCase):
def setUp(self):
self.project_name = 'project'
self.internal_project = helper.Project(self.project_name)
- self.external_project_path = os.path.join('path', 'to', self.project_name)
+ self.external_project_path = os.path.join('/path', 'to', self.project_name)
self.external_project = helper.Project(self.external_project_path,
is_external=True)
self.setUpPyfakefs()