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 179bb4f commit a2dbc8dCopy full SHA for a2dbc8d
pkg/runner/config_test.go
@@ -159,8 +159,8 @@ func TestRunConfig_WithPorts(t *testing.T) {
159
{
160
name: "SSE transport with specific ports",
161
config: &RunConfig{Transport: types.TransportTypeSSE},
162
- port: 8000,
163
- targetPort: 9000,
+ port: 8001,
+ targetPort: 9001,
164
expectError: false,
165
},
166
@@ -173,8 +173,8 @@ func TestRunConfig_WithPorts(t *testing.T) {
173
174
name: "Stdio transport with specific port",
175
config: &RunConfig{Transport: types.TransportTypeStdio},
176
177
- targetPort: 9000, // This should be ignored for stdio
+ port: 8002,
+ targetPort: 9002, // This should be ignored for stdio
178
179
180
}
0 commit comments