Skip to content

Commit

Permalink
Adjust unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mberacochea committed Jun 26, 2024
1 parent 0bfa81c commit b2a1888
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/main.nf.test
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ nextflow_pipeline {
assert success
assert trace.succeeded().count{ task -> task.name.contains("SPADES") } == 1
assert trace.succeeded().count{ task -> task.name.contains("MEGAHIT") } == 0
assert trace.succeeded().size() == 17
assert trace.succeeded().size() == 16
}
}

Expand All @@ -45,7 +45,7 @@ nextflow_pipeline {
assert success
assert trace.succeeded().count{ task -> task.name.contains("SPADES") } == 0
assert trace.succeeded().count{ task -> task.name.contains("MEGAHIT") } == 1
assert trace.tasks().size() == 17
assert trace.tasks().size() == 16
}
}

Expand Down

0 comments on commit b2a1888

Please sign in to comment.