diff mbox series

[ovs-dev] ovn: fix wrong comment in acl log test case

Message ID 1504132930-53641-1-git-send-email-zhouhan@gmail.com
State Accepted
Headers show
Series [ovs-dev] ovn: fix wrong comment in acl log test case | expand

Commit Message

Han Zhou Aug. 30, 2017, 10:42 p.m. UTC
Signed-off-by: Han Zhou <zhouhan@gmail.com>
---
 tests/ovn.at | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Justin Pettit Sept. 11, 2017, 5:32 p.m. UTC | #1
> On Aug 30, 2017, at 3:42 PM, Han Zhou <zhouhan@gmail.com> wrote:
> 
> Signed-off-by: Han Zhou <zhouhan@gmail.com>

Thanks.  I pushed this to master.

--Justin
diff mbox series

Patch

diff --git a/tests/ovn.at b/tests/ovn.at
index fb9fc73..41ccc5a 100644
--- a/tests/ovn.at
+++ b/tests/ovn.at
@@ -5828,13 +5828,13 @@  packet="inport==\"lp1\" && eth.src==$lp1_mac && eth.dst==$lp2_mac &&
         tcp && tcp.flags==2 && tcp.src==4365 && tcp.dst==85"
 as hv ovs-appctl -t ovn-controller inject-pkt "$packet"
 
-# Send packet that should allow related flows with logging.
+# Send packet that should be rejected without logging.
 packet="inport==\"lp1\" && eth.src==$lp1_mac && eth.dst==$lp2_mac &&
         ip4 && ip.ttl==64 && ip4.src==$lp1_ip && ip4.dst==$lp2_ip &&
         tcp && tcp.flags==2 && tcp.src==4366 && tcp.dst==86"
 as hv ovs-appctl -t ovn-controller inject-pkt "$packet"
 
-# Send packet that should allow related flows with logging.
+# Send packet that should be rejected with logging.
 packet="inport==\"lp1\" && eth.src==$lp1_mac && eth.dst==$lp2_mac &&
         ip4 && ip.ttl==64 && ip4.src==$lp1_ip && ip4.dst==$lp2_ip &&
         tcp && tcp.flags==2 && tcp.src==4367 && tcp.dst==87"