We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2748f commit a3d2a27Copy full SHA for a3d2a27
1 file changed
test/integration/start_test.go
@@ -110,8 +110,8 @@ func TestStartCommandFailsWhenPortInUse(t *testing.T) {
110
require.Error(t, err, "expected lstk start to fail when port is in use")
111
requireExitCode(t, 1, err)
112
assert.Contains(t, stdout, "Port 4566 already in use")
113
- assert.Contains(t, stdout, "LocalStack may already be running.")
114
- assert.Contains(t, stdout, "lstk stop")
+ assert.Contains(t, stdout, "Free the port or configure a different one.")
+ assert.Contains(t, stdout, "Use another port in the configuration:")
115
116
// Both lstk_lifecycle (start_error) and lstk_command events should be emitted.
117
byName := collectTelemetryByName(t, events, 2)
0 commit comments