diff --git a/CHANGELOG.md b/CHANGELOG.md index 99001bc..f446c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## v1.1.0 - 22-11-2024 - Amaranth Filly +## v1.1.0 - 25-11-2024 - Amaranth Filly ### `Added` @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [#16](https://github.com/qbic-pipelines/vcftomaf/pull/16) - Template update to 3.0.2 (@famosab) - [#17](https://github.com/qbic-pipelines/vcftomaf/pull/17) - Update all modules (@famosab) +- [#20](https://github.com/qbic-pipelines/vcftomaf/pull/20) - Update subworkflows (@famosab) ### `Dependencies` @@ -23,4 +24,4 @@ Thanks to @d4straub for reviews. ## v1.0.0 - 13-03-2024 - Plum Puppy -Initial release of qbic-pipelines/vcftomaf, created with the [nf-core](https://nf-co.re/) template. +Initial release of qbic-pipelines/vcftomaf, created with the [nf-core](https://nf-co.re/) template, written by @SusiJo and @FriederikeHanssen. diff --git a/subworkflows/nf-core/utils_nextflow_pipeline/tests/main.workflow.nf.test b/subworkflows/nf-core/utils_nextflow_pipeline/tests/main.workflow.nf.test index ca964ce..02dbf09 100644 --- a/subworkflows/nf-core/utils_nextflow_pipeline/tests/main.workflow.nf.test +++ b/subworkflows/nf-core/utils_nextflow_pipeline/tests/main.workflow.nf.test @@ -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 + } + } } } diff --git a/subworkflows/nf-core/utils_nfschema_plugin/tests/main.nf.test b/subworkflows/nf-core/utils_nfschema_plugin/tests/main.nf.test index 842dc43..8fb3016 100644 --- a/subworkflows/nf-core/utils_nfschema_plugin/tests/main.nf.test +++ b/subworkflows/nf-core/utils_nfschema_plugin/tests/main.nf.test @@ -42,7 +42,7 @@ nextflow_workflow { params { test_data = '' - outdir = 1 + outdir = null } workflow { @@ -94,7 +94,7 @@ nextflow_workflow { params { test_data = '' - outdir = 1 + outdir = null } workflow {