From 20473244c077a4c5437f4c43fdcc339bbe3beeba Mon Sep 17 00:00:00 2001 From: munishchouhan Date: Wed, 10 Apr 2024 15:43:59 +0200 Subject: [PATCH] fixed tests Signed-off-by: munishchouhan --- app/src/test/groovy/io/seqera/wave/cli/AppTest.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/test/groovy/io/seqera/wave/cli/AppTest.groovy b/app/src/test/groovy/io/seqera/wave/cli/AppTest.groovy index 88a0cba..f0f1aa0 100644 --- a/app/src/test/groovy/io/seqera/wave/cli/AppTest.groovy +++ b/app/src/test/groovy/io/seqera/wave/cli/AppTest.groovy @@ -284,6 +284,6 @@ class AppTest extends Specification { app.validateArgs() then: def e = thrown(IllegalCliArgumentException) - e.message == '--awaitTimeout option is only allowed when --await option is user' + e.message == '--awaitTimeout option is only allowed when --await option is used' } }