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.
This commit is contained in:
Christian Kellner 2021-01-26 11:35:51 +00:00
parent ae1a1a140e
commit d3e85fe6a4

View file

@ -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}
}
],