From 6c1fa513e998413ef7011b6b780fc80886f23202 Mon Sep 17 00:00:00 2001 From: Yann Hamon Date: Sun, 19 Dec 2021 01:15:31 +0100 Subject: [PATCH] Fixes acceptance test with new TAP output --- acceptance.bats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acceptance.bats b/acceptance.bats index 6b9917b..bc8902e 100755 --- a/acceptance.bats +++ b/acceptance.bats @@ -240,7 +240,7 @@ resetCacheFolder() { run bin/kubeconform -output tap fixtures/valid.yaml [ "$status" -eq 0 ] [ "${lines[0]}" == 'TAP version 13' ] - [ "${lines[1]}" == 'ok 1 - fixtures/valid.yaml (ReplicationController)' ] + [ "${lines[1]}" == 'ok 1 - fixtures/valid.yaml (v1/ReplicationController//bob)' ] [ "${lines[2]}" == '1..1' ] }