diff mbox series

[ovs-dev,1/3] tests: fixed typos in macro logs

Message ID 20230717150641.2069008-2-xsimonar@redhat.com
State Accepted
Headers show
Series ovn-installed | expand

Checks

Context Check Description
ovsrobot/apply-robot success apply and check: success
ovsrobot/github-robot-_ovn-kubernetes success github build: passed
ovsrobot/github-robot-_Build_and_Test fail github build: failed

Commit Message

Xavier Simonart July 17, 2023, 3:06 p.m. UTC
Fixes: 0794a6edf40b ("qos: fix potential double deletion of ovs idl row")

Signed-off-by: Xavier Simonart <xsimonar@redhat.com>
---
 tests/ovn-macros.at | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/tests/ovn-macros.at b/tests/ovn-macros.at
index 7c23db514..4898b0bc8 100644
--- a/tests/ovn-macros.at
+++ b/tests/ovn-macros.at
@@ -848,8 +848,8 @@  wake_up_sb() {
   AT_CHECK([kill -CONT $(cat ovn-sb/ovsdb-server.pid)])
 }
 sleep_controller() {
-  echo Controller $hv going to sleep
   hv=$1
+  echo Controller $hv going to sleep
   as $hv
   check ovn-appctl debug/pause
   OVS_WAIT_UNTIL([test x$(ovn-appctl -t ovn-controller debug/status) = "xpaused"])
@@ -869,7 +869,7 @@  sleep_ovs() {
 
 wake_up_ovs() {
   hv=$1
-  echo ovs $hv going to sleep
+  echo ovs $hv going to wake-up
   AT_CHECK([kill -CONT $(cat $hv/ovs-vswitchd.pid)])
 }