From d3e85fe6a40815b703ec9506f0e791ada215bb3d Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Tue, 26 Jan 2021 11:35:51 +0000 Subject: [PATCH] test/fmt_v1: use noop stages in test manifest Instead of using `org.osbuild.test` stages, so `org.osbuild.noop` stages so that the options we pass are actually valid and we can use the manifest in schema validation checking. --- test/mod/test_fmt_v1.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/mod/test_fmt_v1.py b/test/mod/test_fmt_v1.py index 614f4397..2ca117b9 100644 --- a/test/mod/test_fmt_v1.py +++ b/test/mod/test_fmt_v1.py @@ -52,7 +52,7 @@ BASIC_PIPELINE = { }, "stages": [ { - "name": "org.osbuild.test", + "name": "org.osbuild.noop", "options": {"one": 1} } ] @@ -61,7 +61,7 @@ BASIC_PIPELINE = { }, "stages": [ { - "name": "org.osbuild.test", + "name": "org.osbuild.noop", "options": {"one": 2} } ],