From 92f9822b0d9454540b710e5818e4a058ff663ce7 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Thu, 25 Feb 2016 14:24:20 -0800 Subject: [PATCH] tests: Fix use of "test". Only = is portable for testing equality, == is a nonportable extension. Signed-off-by: Ben Pfaff Acked-by: Russell Bryant --- tests/ovn.at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ovn.at b/tests/ovn.at index 0e717320f..5cb7d8b94 100644 --- a/tests/ovn.at +++ b/tests/ovn.at @@ -634,7 +634,7 @@ test_arp() { hv=`vif_to_hv $inport` as $hv ovs-appctl netdev-dummy/receive vif$inport $request - if test X$reply_ha == X; then + if test X$reply_ha = X; then # Expect to receive the broadcast ARP on the other logical switch ports # if no reply is expected. local i j -- 2.20.1