diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-10-04 17:39:07 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-10-10 19:29:59 +0900 |
commit | fa512fef4765cc63ceeb4a901a3a517cb83606d6 (patch) | |
tree | 3585e1bf833e962e15e964ef9cec78d6a17c4c49 /tests/plugins | |
parent | ce5a47973bb639c1f61cd65cce212bb0308f0134 (diff) | |
download | buildstream-fa512fef4765cc63ceeb4a901a3a517cb83606d6.tar.gz |
Updated test cases for internal API changes stemming from project options
Diffstat (limited to 'tests/plugins')
-rw-r--r-- | tests/plugins/pipeline.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugins/pipeline.py b/tests/plugins/pipeline.py index c8dcb32f8..792dd1996 100644 --- a/tests/plugins/pipeline.py +++ b/tests/plugins/pipeline.py @@ -14,8 +14,8 @@ DATA_DIR = os.path.join( def create_pipeline(tmpdir, basedir, target): - context = Context('x86_64') - project = Project(basedir, 'x86_64') + context = Context([], 'x86_64') + project = Project(basedir, context) context.deploydir = os.path.join(str(tmpdir), 'deploy') context.artifactdir = os.path.join(str(tmpdir), 'artifact') |