You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are defining the command in the TestAssert twice and the second one
is just overriding the first one which is never executed. This patch is
merging both in just one assignment which is what kuttl tests definition
seems to expect.
Copy file name to clipboardExpand all lines: tests/kuttl/test-suites/default/watcher/01-assert.yaml
+2-9Lines changed: 2 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -258,16 +258,9 @@ commands:
258
258
set -euxo pipefail
259
259
oc exec -n watcher-kuttl-default openstackclient -- openstack service list -f value -c Name -c Type |[ $(grep -c ^watcher) == 1 ]
260
260
SERVICEID=$(oc exec -n watcher-kuttl-default openstackclient -- openstack service list -f value -c Name -c Type -c ID | grep watcher| awk '{print $1}')
0 commit comments