Skip to content

Commit efac287

Browse files
committed
patch up old reference
1 parent 3a0b9b8 commit efac287

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/model_context_protocol/server/transports/stdio_transport_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# frozen_string_literal: true
22

33
require "test_helper"
4-
require "model_context_protocol/server/transports/stdio"
4+
require "mcp/server/transports/stdio"
55
require "json"
66

77
module ModelContextProtocol
@@ -47,7 +47,7 @@ class StdioTransportTest < ActiveSupport::TestCase
4747
response = JSON.parse(output.string, symbolize_names: true)
4848
assert_equal("2.0", response[:jsonrpc])
4949
assert_equal("123", response[:id])
50-
assert_equal({}, response[:result])
50+
assert_empty(response[:result])
5151
refute(@transport.instance_variable_get(:@open))
5252
ensure
5353
$stdin = original_stdin

0 commit comments

Comments
 (0)