From 89fcbcedb2f7df94ac1900f0231d36c610bc526e Mon Sep 17 00:00:00 2001 From: Redouane Kachach Date: Tue, 15 Jul 2025 16:38:26 +0200 Subject: [PATCH] mgr/cephadm: fixing SMB service discovery UT Signed-off-by: Redouane Kachach --- src/pybind/mgr/cephadm/tests/test_service_discovery.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/cephadm/tests/test_service_discovery.py b/src/pybind/mgr/cephadm/tests/test_service_discovery.py index c839c92238b01..9dac31015135f 100644 --- a/src/pybind/mgr/cephadm/tests/test_service_discovery.py +++ b/src/pybind/mgr/cephadm/tests/test_service_discovery.py @@ -87,7 +87,7 @@ class FakeSpecDescription: class FakeSpecStore(): def __init__(self, mgr): self.mgr = mgr - self._specs = {'ingress': FakeSpecDescription('ingress', 9049), 'nfs': FakeSpecDescription('nfs', 9587)} + self._specs = {'ingress': FakeSpecDescription('ingress', 9049), 'nfs': FakeSpecDescription('nfs', 9587), 'smb': FakeSpecDescription('smb', 9922)} def __contains__(self, name): return name in self._specs -- 2.39.5