Skip to content

Commit 82350ed

Browse files
committed
lintin
1 parent bd0ed80 commit 82350ed

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

tests/test_extension.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,12 @@ def test_register_configured_tools_valid(self):
273273

274274
# Check log messages
275275
mock_logger.info.assert_any_call("Registering 2 tools from configuration")
276-
mock_logger.info.assert_any_call("✅ Registered tool from configuration: os:getcwd")
277-
mock_logger.info.assert_any_call("✅ Registered tool from configuration: math:sqrt")
276+
mock_logger.info.assert_any_call(
277+
"✅ Registered tool from configuration: os:getcwd"
278+
)
279+
mock_logger.info.assert_any_call(
280+
"✅ Registered tool from configuration: math:sqrt"
281+
)
278282

279283
def test_register_configured_tools_with_errors(self):
280284
"""Test registering tools when some fail to load."""

0 commit comments

Comments
 (0)