]> git.puffer.fish Git - mirror/frr.git/commitdiff
tests: fix log string in topotests/lib/bgprib.py 9700/head
authorMark Stapp <mstapp@nvidia.com>
Fri, 1 Oct 2021 11:51:03 +0000 (07:51 -0400)
committerMark Stapp <mstapp@nvidia.com>
Fri, 1 Oct 2021 12:06:35 +0000 (08:06 -0400)
Correct a log string in a method in bgprib.py - cut-and-paste
error, maybe?

Signed-off-by: Mark Stapp <mstapp@nvidia.com>
tests/topotests/lib/bgprib.py

index a216e3588eaf00e1f083fbf3fde137e783650ba7..35a57d0a9991214c8253c0dee990b02fcfaec729 100644 (file)
@@ -122,7 +122,7 @@ class BgpRib:
         luResult(target, True, title, logstr)
 
     def RequireUnicastRoutes(self, target, afi, vrf, title, wantroutes, debug=0):
-        logstr = "RequireVpnRoutes %s" % str(wantroutes)
+        logstr = "RequireUnicastRoutes %s" % str(wantroutes)
         vrfstr = ""
         if vrf != "":
             vrfstr = "vrf %s" % (vrf)