From 02dcbb731ef6e54e0cd00057a9ec3b89777f838b Mon Sep 17 00:00:00 2001 From: Matteo Bonfanti Date: Mon, 3 Feb 2025 15:52:44 +0100 Subject: [PATCH] look for "# input: null" in test_params_file --- tests/pipelines/test_params_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pipelines/test_params_file.py b/tests/pipelines/test_params_file.py index 0450d3f99d..723a8a561e 100644 --- a/tests/pipelines/test_params_file.py +++ b/tests/pipelines/test_params_file.py @@ -64,4 +64,4 @@ def test_build_template_content(self): out = fh.read() assert "nf-core/testpipeline" in out - assert "# input = null" in out + assert "# input: null" in out