From 4be8c8daed5006848f87a47ca8462aa8612e76c3 Mon Sep 17 00:00:00 2001 From: decentral1se Date: Wed, 10 Jul 2024 13:20:26 +0200 Subject: [PATCH] test: fix outputs [ci skip] See https://build.coopcloud.tech/coop-cloud/abra/2035/1/5 --- cli/app/new.go | 2 +- tests/integration/app_deploy.bats | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/app/new.go b/cli/app/new.go index 9a81c581..27bda8f4 100644 --- a/cli/app/new.go +++ b/cli/app/new.go @@ -191,7 +191,7 @@ var appNewCommand = cli.Command{ fmt.Println("Generated secrets:") fmt.Println("") secretTable.Render() - log.Warn("Generated secrets are not shown again, please take note of them NOW") + log.Warn("generated secrets are not shown again, please take note of them NOW") } return nil diff --git a/tests/integration/app_deploy.bats b/tests/integration/app_deploy.bats index 57d0ad07..ccdcf835 100644 --- a/tests/integration/app_deploy.bats +++ b/tests/integration/app_deploy.bats @@ -269,7 +269,7 @@ teardown(){ @test "error if specific version does not exist" { run $ABRA app deploy "$TEST_APP_DOMAIN" DOESNTEXIST --no-input --no-converge-checks assert_failure - assert_output --partial "doesn't seem to have version DOESNTEXIST available" + assert_output --partial "reference not found" } # bats test_tags=slow