Skip to content

Commit

Permalink
fix Should print version test assertion (#6887)
Browse files Browse the repository at this point in the history
  • Loading branch information
sateeshperi authored Oct 29, 2024
1 parent 21a84fb commit 5637268
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,12 @@ nextflow_workflow {
}

then {
assertAll(
{ assert workflow.success },
{ assert workflow.stdout.contains("nextflow_workflow v9.9.9") }
)
expect {
with(workflow) {
assert success
assert "nextflow_workflow v9.9.9" in stdout
}
}
}
}

Expand Down

0 comments on commit 5637268

Please sign in to comment.