diff --git a/docs/testcases/nextflow_pipeline.md b/docs/testcases/nextflow_pipeline.md index 9696eb45..56ada6bb 100644 --- a/docs/testcases/nextflow_pipeline.md +++ b/docs/testcases/nextflow_pipeline.md @@ -75,7 +75,7 @@ Create a new file and name it `pipeline.nf.test`. ```Groovy nextflow_pipeline { - name "Test Process TEST_PROCESS" + name "Test Pipeline with 1 process" script "pipeline.nf" test("Should run without failures") { diff --git a/docs/testcases/nextflow_process.md b/docs/testcases/nextflow_process.md index fac624eb..d0fcb114 100644 --- a/docs/testcases/nextflow_process.md +++ b/docs/testcases/nextflow_process.md @@ -85,7 +85,7 @@ Create a new file and name it `trial.nf.test`. nextflow_process { - name "Test Process TEST_PROCESS" + name "Test Process SAY_HELLO" script "say_hello.nf" process "SAY_HELLO" diff --git a/docs/testcases/nextflow_workflow.md b/docs/testcases/nextflow_workflow.md index 77729bc2..e7a3c964 100644 --- a/docs/testcases/nextflow_workflow.md +++ b/docs/testcases/nextflow_workflow.md @@ -88,7 +88,7 @@ Create a new file and name it `say_hello.nf.test`. ```Groovy nextflow_process { - name "Test Process TEST_PROCESS" + name "Test Workflow Trial" script "say_hello.nf" process "SAY_HELLO"