From: Redouane Kachach Date: Tue, 15 Jul 2025 14:38:26 +0000 (+0200) Subject: mgr/cephadm: fixing SMB service discovery UT X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=89fcbcedb2f7df94ac1900f0231d36c610bc526e;p=ceph.git mgr/cephadm: fixing SMB service discovery UT Signed-off-by: Redouane Kachach --- 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