diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pipeline/load.py | 2 | ||||
-rw-r--r-- | tests/plugins/pipeline.py | 2 | ||||
-rw-r--r-- | tests/project/plugins.py | 2 | ||||
-rw-r--r-- | tests/variables/variables.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/pipeline/load.py b/tests/pipeline/load.py index d66c70e96..33d49bb31 100644 --- a/tests/pipeline/load.py +++ b/tests/pipeline/load.py @@ -19,7 +19,7 @@ def create_pipeline(tmpdir, basedir, target): context.deploydir = os.path.join(str(tmpdir), 'deploy') 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) diff --git a/tests/plugins/pipeline.py b/tests/plugins/pipeline.py index 792dd1996..1ff248178 100644 --- a/tests/plugins/pipeline.py +++ b/tests/plugins/pipeline.py @@ -19,7 +19,7 @@ def create_pipeline(tmpdir, basedir, target): context.deploydir = os.path.join(str(tmpdir), 'deploy') 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) 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) diff --git a/tests/variables/variables.py b/tests/variables/variables.py index 61cf26c82..8c5db0a19 100644 --- a/tests/variables/variables.py +++ b/tests/variables/variables.py @@ -16,7 +16,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) |