]> git.puffer.fish Git - mirror/frr.git/commitdiff
tests: fix missed grpc test requirement for frr-backend addition
authorChristian Hopps <chopps@labn.net>
Thu, 16 Jan 2025 01:09:14 +0000 (01:09 +0000)
committerChristian Hopps <chopps@labn.net>
Thu, 16 Jan 2025 02:13:34 +0000 (02:13 +0000)
Signed-off-by: Christian Hopps <chopps@labn.net>
tests/topotests/grpc_basic/test_basic_grpc.py

index 5ff2894fd1abb6647cafbaa3632b58f8a36c670f..e82436c39e378d00ee0261e759cbe1f7ec610e61 100644 (file)
@@ -108,7 +108,7 @@ def test_capabilities(tgen):
     logging.debug("grpc output: %s", output)
 
     modules = sorted(re.findall('name: "([^"]+)"', output))
-    expected = ["frr-interface", "frr-routing", "frr-staticd", "frr-vrf"]
+    expected = ["frr-backend", "frr-interface", "frr-routing", "frr-staticd", "frr-vrf"]
     assert modules == expected
 
     encodings = sorted(re.findall("supported_encodings: (.*)", output))
@@ -145,15 +145,10 @@ def test_get_config(tgen):
               "ip": "192.168.1.1",
               "prefix-length": 24
             }
-          ],
-          "evpn-mh": {},
-          "ipv6-router-advertisements": {}
+          ]
         }
       }
     ]
-  },
-  "frr-zebra:zebra": {
-    "import-kernel-table": {}
   }
 } """
     )