tests: fix missed grpc test requirement for frr-backend addition

Signed-off-by: Christian Hopps <chopps@labn.net>
This commit is contained in:
Christian Hopps 2025-01-16 01:09:14 +00:00
parent 0bc373c573
commit b0f9c4d688

View File

@ -108,7 +108,7 @@ def test_capabilities(tgen):
logging.debug("grpc output: %s", output) logging.debug("grpc output: %s", output)
modules = sorted(re.findall('name: "([^"]+)"', 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 assert modules == expected
encodings = sorted(re.findall("supported_encodings: (.*)", output)) encodings = sorted(re.findall("supported_encodings: (.*)", output))
@ -145,15 +145,10 @@ def test_get_config(tgen):
"ip": "192.168.1.1", "ip": "192.168.1.1",
"prefix-length": 24 "prefix-length": 24
} }
], ]
"evpn-mh": {},
"ipv6-router-advertisements": {}
} }
} }
] ]
},
"frr-zebra:zebra": {
"import-kernel-table": {}
} }
} """ } """
) )