summaryrefslogtreecommitdiff
path: root/tests/project
diff options
context:
space:
mode:
authorTristan Maat <tristan.maat@codethink.co.uk>2017-10-31 13:31:00 +0000
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2017-11-01 10:01:42 +0000
commit6c0fa8445b849680300d407efe8bca691d4e680e (patch)
tree9a17bfa7f2c05d4d6338c21e163fa776b74c2376 /tests/project
parentd64ea749379100f61ed2c3342bcda4d8e5a46d71 (diff)
downloadbuildstream-6c0fa8445b849680300d407efe8bca691d4e680e.tar.gz
Clean old Platform.get_platform references
Diffstat (limited to 'tests/project')
-rw-r--r--tests/project/plugins.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/project/plugins.py b/tests/project/plugins.py
index 19bbc0353..67dc691d7 100644
--- a/tests/project/plugins.py
+++ b/tests/project/plugins.py
@@ -17,7 +17,7 @@ def create_pipeline(tmpdir, basedir, target):
context = Context([], 'x86_64')
project = Project(basedir, context)
context.artifactdir = os.path.join(str(tmpdir), 'artifact')
- context._platform = Platform.get_platform(context, project)
+ context._platform = Platform.get_platform()
return Pipeline(context, project, target)