Skip to content

Commit a2dbc8d

Browse files
authored
fix: resolve sporadic CI test failure due to port conflicts (#676)
1 parent 179bb4f commit a2dbc8d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pkg/runner/config_test.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ func TestRunConfig_WithPorts(t *testing.T) {
159159
{
160160
name: "SSE transport with specific ports",
161161
config: &RunConfig{Transport: types.TransportTypeSSE},
162-
port: 8000,
163-
targetPort: 9000,
162+
port: 8001,
163+
targetPort: 9001,
164164
expectError: false,
165165
},
166166
{
@@ -173,8 +173,8 @@ func TestRunConfig_WithPorts(t *testing.T) {
173173
{
174174
name: "Stdio transport with specific port",
175175
config: &RunConfig{Transport: types.TransportTypeStdio},
176-
port: 8000,
177-
targetPort: 9000, // This should be ignored for stdio
176+
port: 8002,
177+
targetPort: 9002, // This should be ignored for stdio
178178
expectError: false,
179179
},
180180
}

0 commit comments

Comments
 (0)