diff --git a/CHANGELOG.md b/CHANGELOG.md index 59f6763..57ddac5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Re-enable npm run test in CI (#15). +- Fix release version check in unit test (#15). + ## [1.3.0] - 2023-05-19 ## Changed diff --git a/test/functions.ts b/test/functions.ts index 36730ca..042872f 100644 --- a/test/functions.ts +++ b/test/functions.ts @@ -29,7 +29,7 @@ test("lastest_stable_release_data", async t => { t.context["octokit"] ) t.is(typeof result, "object") - t.is(result["tag_name"], "v22.10.2") + t.is(result["tag_name"], "v23.04.2") }) test.todo("nextflow_bin_url")