diff options
author | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-02-02 19:24:26 +0900 |
---|---|---|
committer | Tristan Van Berkom <tristan.vanberkom@codethink.co.uk> | 2017-02-02 19:24:26 +0900 |
commit | be74f6171b2c27c702dfefbad12f83899a9ed33f (patch) | |
tree | 476315bee2414c51da53e802a6e4e2422a922fbb /tests/pipeline | |
parent | bd968865a3d40947adcdef5ed347cd0e09d350cb (diff) | |
download | buildstream-be74f6171b2c27c702dfefbad12f83899a9ed33f.tar.gz |
Fixed tests for new Project() constructor argument.
Diffstat (limited to 'tests/pipeline')
-rw-r--r-- | tests/pipeline/load.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/pipeline/load.py b/tests/pipeline/load.py index 791248c0f..6f4fffe43 100644 --- a/tests/pipeline/load.py +++ b/tests/pipeline/load.py @@ -12,7 +12,7 @@ DATA_DIR = os.path.join( def create_pipeline(tmpdir, basedir, target, variant): context = Context('x86_64') - project = Project(basedir) + project = Project(basedir, 'x86_64') context.deploydir = os.path.join(str(tmpdir), 'deploy') context.artifactdir = os.path.join(str(tmpdir), 'artifact') |