Skip to content

Commit 35a94de

Browse files
committed
fix tests
1 parent c71d103 commit 35a94de

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

subworkflows/local/utils_nfcore_rnaseq_pipeline/tests/main.pipeline_completion.workflow.nf.test

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,16 @@ nextflow_workflow {
99
when {
1010
workflow {
1111
"""
12-
input[0] = "${projectDir}/nextflow_schema.json" // schema (string)
13-
input[1] = null // email (string)
14-
input[2] = null // email_on_fail (string)
15-
input[3] = true // plaintext_email (boolean)
16-
input[4] = "${outputDir}" // outputDir (string)
17-
input[5] = true // monochrome_logs (boolean)
18-
input[6] = null // hook_url (string)
19-
input[7] = "${outputDir}/multiqc_report.html" // multiqc_report (string)
12+
input[0] = null // email (string)
13+
input[1] = null // email_on_fail (string)
14+
input[2] = true // plaintext_email (boolean)
15+
input[3] = "${outputDir}" // outputDir (string)
16+
input[4] = true // monochrome_logs (boolean)
17+
input[5] = null // hook_url (string)
18+
input[6] = "${outputDir}/multiqc_report.html" // multiqc_report (string)
19+
input[7] = Channel.of(['test_sample', true])
2020
input[8] = Channel.of(['test_sample', true])
2121
input[9] = Channel.of(['test_sample', true])
22-
input[10] = Channel.of(['test_sample', true])
2322
"""
2423
}
2524
}

0 commit comments

Comments
 (0)