From 7c0acc283c8ce353b6aec7a48ee31be145d8be08 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 22 Sep 2025 11:15:37 -0400 Subject: [PATCH] mgr/smb: fix unit test assertion The unit test was looking for the wrong string (but the right condition). This fixes the string to check. Signed-off-by: John Mulligan --- src/pybind/mgr/smb/tests/test_smb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pybind/mgr/smb/tests/test_smb.py b/src/pybind/mgr/smb/tests/test_smb.py index 25dad1e6e961..3606ffdf99fe 100644 --- a/src/pybind/mgr/smb/tests/test_smb.py +++ b/src/pybind/mgr/smb/tests/test_smb.py @@ -1131,7 +1131,7 @@ def test_keybridge_config(tmodule): dict(scopes=[{'name': 'kmip'}], expected='kmip hostname'), dict( scopes=[{'name': 'kmip', 'kmip_hosts': ['foo.example.org']}], - expected='kmip server port', + expected='kmip default port', ), dict( scopes=[ -- 2.47.3