flow_matches.IpTos: fix DSCP values
The lower 2 bits of the TOS byte are for ECN.
diff --git a/tests/FuncUtils.py b/tests/FuncUtils.py
index 9e3fea6..45c12fb 100644
--- a/tests/FuncUtils.py
+++ b/tests/FuncUtils.py
@@ -367,7 +367,7 @@
#Generate a Match on IP Type of service flow
#Create a simple tcp packet and generate match on Type of service
- pkt_iptos = simple_tcp_packet(ip_tos=30)
+ pkt_iptos = simple_tcp_packet(ip_tos=28)
match = parse.packet_to_flow_match(pkt_iptos)
self.assertTrue(match is not None, "Could not generate flow match from pkt")