[V1] tests/TestSuite_iavf_fdir: fix syntax errors

Message ID 20200902085909.1667-1-yux.jiang@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] tests/TestSuite_iavf_fdir: fix syntax errors |

Commit Message

Yu Jiang Sept. 2, 2020, 8:59 a.m. UTC
  From: "Jiang,yu" <yux.jiang@intel.com>

Fix syntax errors: there are 4 invalid black spaces 

Signed-off-by: Jiang,yu <yux.jiang@intel.com>
---
 tests/TestSuite_iavf_fdir.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Tu, Lijuan Sept. 9, 2020, 8:27 a.m. UTC | #1
> Subject: [dts] [PATCH V1] tests/TestSuite_iavf_fdir: fix syntax errors
> 
> From: "Jiang,yu" <yux.jiang@intel.com>
> 
> Fix syntax errors: there are 4 invalid black spaces
> 
> Signed-off-by: Jiang,yu <yux.jiang@intel.com>

Applied
  

Patch

diff --git a/tests/TestSuite_iavf_fdir.py b/tests/TestSuite_iavf_fdir.py
index eaea13f..63d8714 100644
--- a/tests/TestSuite_iavf_fdir.py
+++ b/tests/TestSuite_iavf_fdir.py
@@ -4091,7 +4091,7 @@  class TestIAVFFdir(TestCase):
 
         rule_ipv4_tcp_ipv6_udp = [
             "flow create 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 / tcp src is 22 dst is 23 / end actions queue index 1 / mark id 0 / end",
-            "flow create 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 src is 2001::2 hop is 2 tc is 1 / udp src is 22 dst is 23 / end actions queue index 2 / mark id 2 / e    nd"
+            "flow create 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 src is 2001::2 hop is 2 tc is 1 / udp src is 22 dst is 23 / end actions queue index 2 / mark id 2 / end"
         ]
         # create rules
         self.create_fdir_rule(rule_ipv4_tcp_ipv6_udp, check_stats=True)