]> git.proxmox.com Git - mirror_frr.git/blobdiff - tests/topotests/bgp_l3vpn_to_bgp_vrf/scripts/check_linux_mpls.py
Revert "Merge pull request #11127 from louis-6wind/bgp-leak"
[mirror_frr.git] / tests / topotests / bgp_l3vpn_to_bgp_vrf / scripts / check_linux_mpls.py
index a5f95f94bf38dadcadced75f93d628417bf9da8b..91a7adf9970e672a24ec3077acd375ef06b7548e 100644 (file)
@@ -4,7 +4,7 @@ from lib import topotest
 ret = luCommand(
     "r2",
     "ip -M route show",
-    "\d*(?= via inet 10.0.2.4 dev r2-eth1)",
+    r"\d*(?= via inet 10.0.2.4 dev r2-eth1)",
     "wait",
     "See mpls route to r4",
 )
@@ -16,7 +16,7 @@ if ret != False and found != None:
     ret = luCommand(
         "r2",
         "ip -M route show",
-        "\d*(?= via inet 10.0.1.1 dev r2-eth0)",
+        r"\d*(?= via inet 10.0.1.1 dev r2-eth0)",
         "wait",
         "See mpls route to r1",
     )