Skip to content

Commit 39ac619

Browse files
author
Seqera AI
committed
Fix lint issues: use underscore prefix for unused param and add equals signs to nf-test.config
1 parent ac7db68 commit 39ac619

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ workflow {
6161

6262
XENGSORT_SUMMARY(
6363
XENGSORT_CLASSIFY.out.classification
64-
.map { meta, classification_file -> classification_file }
64+
.map { _meta, classification_file -> classification_file }
6565
.collect()
6666
)
6767

nf-test.config

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
config {
22

3-
testsDir "test_minimal"
4-
workDir ".nf-test"
5-
configFile "test_minimal/nextflow.config"
6-
profile ""
3+
testsDir = "test_minimal"
4+
workDir = ".nf-test"
5+
configFile = "test_minimal/nextflow.config"
6+
profile = ""
77

88
}

0 commit comments

Comments
 (0)