diff options
author | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-10-31 13:31:00 +0000 |
---|---|---|
committer | Tristan Maat <tristan.maat@codethink.co.uk> | 2017-10-31 13:31:00 +0000 |
commit | e268c297788f8175ae82e8978e44222da8acad64 (patch) | |
tree | c6e9a239d2785bceeb15ea41ac5f8d0635e4a351 /tests/project/plugins.py | |
parent | 5e28b4a3de1f42a1d4240d429c1c85641da5f40c (diff) | |
download | buildstream-platform_singleton.tar.gz |
Clean old Platform.get_platform referencesplatform_singleton
Diffstat (limited to 'tests/project/plugins.py')
-rw-r--r-- | tests/project/plugins.py | 2 |
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) |