tests: python3 use byte strings in raw()
[vpp.git] / src / plugins / igmp / test / test_igmp.py
index e90fbfb..3f9b99b 100644 (file)
@@ -202,7 +202,7 @@ class TestIgmp(VppTestCase):
                IP(src=self.pg0.remote_ip4, dst='224.0.0.1', tos=0xc0) /
                IGMPv3(type="Membership Query", mrcode=100) /
                IGMPv3mq(gaddr="0.0.0.0") /
-               Raw('\x00' * 10))
+               Raw(b'\x00' * 10))
 
         self.send(self.pg0, p_g)