From 48ea59fe79eab3991cc4047de935d80edc2d376a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Mon, 26 Aug 2024 11:05:41 +0200 Subject: [PATCH] fix(tests): Don't check for json stdout of kwctl anymore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Cuadrado Juan --- e2e.bats | 3 --- 1 file changed, 3 deletions(-) diff --git a/e2e.bats b/e2e.bats index f37791d..5dbb1b6 100644 --- a/e2e.bats +++ b/e2e.bats @@ -85,7 +85,6 @@ # settings validation fails [ "$status" -eq 1 ] - [ $(expr "$output" : '.*valid.*false') -ne 0 ] [ $(expr "$output" : ".*Provided settings are not valid: These labels cannot be constrained and denied at the same time: cc-center.*") -ne 0 ] } @@ -99,7 +98,6 @@ # settings validation fails [ "$status" -eq 1 ] - [ $(expr "$output" : '.*valid.*false') -ne 0 ] [ $(expr "$output" : ".*Provided settings are not valid: These labels cannot be mandatory and denied at the same time: cc-center.*") -ne 0 ] } @@ -113,6 +111,5 @@ # settings validation fails [ "$status" -eq 1 ] - [ $(expr "$output" : '.*valid.*false') -ne 0 ] [ $(expr "$output" : ".*Provided settings are not valid: error parsing regexp: missing closing ]: `[12$`.*") -ne 0 ] }