summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-02 18:58:37 +0900
committerTristan Van Berkom <tristan.vanberkom@codethink.co.uk>2017-11-02 18:58:37 +0900
commit557a08d0b3f6101f8452cce25096b310de0f596e (patch)
treee63781a180f1aca2dbd0282e78a7808499eeae35
parent9870257fd81299c282f909d04b88d821f90b3743 (diff)
downloadbuildstream-557a08d0b3f6101f8452cce25096b310de0f596e.tar.gz
tests/testutils/repo/tar.py: Fixed for changed tar behavior
This test was encoding tarballs with '.', so the change of ignoring '.' breaks this - now we just make the tar test scaffolding use an empty string for the base-dir.
-rw-r--r--tests/testutils/repo/tar.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testutils/repo/tar.py b/tests/testutils/repo/tar.py
index 194995b7b..b9cec97b6 100644
--- a/tests/testutils/repo/tar.py
+++ b/tests/testutils/repo/tar.py
@@ -23,8 +23,8 @@ class Tar(Repo):
config = {
'kind': 'tar',
'url': 'file://' + tarball,
- # 'track': 'master', ## Not a thing according to TVB
- 'directory': ''
+ 'directory': '',
+ 'base-dir': ''
}
if ref is not None:
config['ref'] = ref