Skip to content

Commit 435164d

Browse files
mashehuSPPearce
andcommitted
apply code suggestions
Co-authored-by: Simon Pearce <[email protected]>
1 parent a7749bb commit 435164d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

nf_core/module-template/tests/main.nf.test.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ nextflow_process {
2727
// TODO nf-core: define inputs of the process here. Example:
2828
{% if has_meta %}
2929
input[0] = [
30-
[ id:'test' ], // meta map
30+
[ id:'test' ],
3131
file(params.modules_testdata_base_path + 'genomics/sarscov2/illumina/bam/test.paired_end.sorted.bam', checkIfExists: true),
3232
]
3333
{%- else %}
@@ -62,7 +62,7 @@ nextflow_process {
6262
// TODO nf-core: define inputs of the process here. Example:
6363
{% if has_meta %}
6464
input[0] = [
65-
[ id:'test' ], // meta map
65+
[ id:'test' ],
6666
file(params.modules_testdata_base_path + 'genomics/sarscov2/illumina/bam/test.paired_end.sorted.bam', checkIfExists: true),
6767
]
6868
{%- else %}

nf_core/subworkflow-template/tests/main.nf.test.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ nextflow_workflow {
3434
}
3535
}
3636
then {
37-
assert process.success
37+
assert workflow.success
3838
assertAll(
3939
{ assert snapshot(
40-
workflow.out.versions
40+
workflow.out
4141
//TODO nf-core: Add all required assertions to verify the test output.
4242
).match() }
4343
)

0 commit comments

Comments
 (0)