diff --git a/test/mcp/configuration_test.rb b/test/mcp/configuration_test.rb index a4193a2..5096e03 100644 --- a/test/mcp/configuration_test.rb +++ b/test/mcp/configuration_test.rb @@ -12,8 +12,9 @@ class ConfigurationTest < ActiveSupport::TestCase exception = StandardError.new("test error") server_context = { test: "context" } - # Should not raise any errors - config.exception_reporter.call(exception, server_context) + assert_nothing_raised do + config.exception_reporter.call(exception, server_context) + end end test "allows setting a custom exception reporter" do