summaryrefslogtreecommitdiff
path: root/tests/testutils/repo/ostree.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testutils/repo/ostree.py')
-rw-r--r--tests/testutils/repo/ostree.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/testutils/repo/ostree.py b/tests/testutils/repo/ostree.py
index f49659ca2..e240de113 100644
--- a/tests/testutils/repo/ostree.py
+++ b/tests/testutils/repo/ostree.py
@@ -7,11 +7,11 @@ from ..site import HAVE_OSTREE_CLI, HAVE_OSTREE
class OSTree(Repo):
- def __init__(self, directory):
+ def __init__(self, directory, subdir):
if not HAVE_OSTREE_CLI or not HAVE_OSTREE:
pytest.skip("ostree cli is not available")
- super(OSTree, self).__init__(directory)
+ super(OSTree, self).__init__(directory, subdir)
def create(self, directory):
subprocess.call(['ostree', 'init',