tools: remove accidentally added line in test case generator

The line slipped in f945c505 when testing the changes. Let's remove it,
it breaks the script.
This commit is contained in:
Ondřej Budai 2020-03-31 14:01:13 +02:00
parent c5823d92b4
commit 28d0c4f640

View file

@ -42,8 +42,6 @@ def main(test_case, store):
pipeline_command = ["go", "run", "./cmd/osbuild-pipeline", "-rpmmd", "-"]
test_case["rpmmd"] = json.loads(subprocess.check_output(pipeline_command, input=compose_request, encoding="utf-8"))
return test_case
if boot_type != "nspawn-extract":
output_id = run_osbuild(test_case["manifest"], store)
image_file = os.path.join(store, "refs", output_id, test_case["compose-request"]["filename"])