Skip to content

Commit e9461d9

Browse files
committed
appease rubocop
1 parent ac13bab commit e9461d9

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

test/mcp/client_test.rb

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ def test_call_tool_sends_request_to_transport_and_returns_content
3939

4040
# Only checking for the essential parts of the request
4141
transport.expects(:send_request).with do |args|
42-
args in {
43-
request: {
44-
method: "tools/call",
45-
jsonrpc: "2.0",
46-
params: {
47-
name: "tool1",
48-
arguments: arguments,
49-
},
42+
args in {
43+
request: {
44+
method: "tools/call",
45+
jsonrpc: "2.0",
46+
params: {
47+
name: "tool1",
48+
arguments: arguments,
5049
},
51-
}
50+
},
51+
}
5252
end.returns(mock_response).once
5353

5454
client = Client.new(transport: transport)

0 commit comments

Comments
 (0)