We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0ed80 commit 82350edCopy full SHA for 82350ed
tests/test_extension.py
@@ -273,8 +273,12 @@ def test_register_configured_tools_valid(self):
273
274
# Check log messages
275
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")
+ mock_logger.info.assert_any_call(
+ "✅ Registered tool from configuration: os:getcwd"
278
+ )
279
280
+ "✅ Registered tool from configuration: math:sqrt"
281
282
283
def test_register_configured_tools_with_errors(self):
284
"""Test registering tools when some fail to load."""
0 commit comments