chore: gofmt integration test file

The Check formatting step failed on the stub method alignment in
stubAgent's three method declarations. Re-run of gofmt aligns the column
gutter on those signatures; no behavioural change.
This commit is contained in:
harshitsinghbhandari 2026-05-31 18:37:06 +05:30
parent ad1c4dacec
commit ee0af288a4
1 changed files with 2 additions and 2 deletions

View File

@ -119,9 +119,9 @@ func (s *stubRuntime) IsAlive(context.Context, ports.RuntimeHandle) (bool, error
type stubAgent struct{}
func (stubAgent) GetLaunchCommand(ports.AgentConfig) string { return "launch" }
func (stubAgent) GetLaunchCommand(ports.AgentConfig) string { return "launch" }
func (stubAgent) GetEnvironment(ports.AgentConfig) map[string]string { return map[string]string{} }
func (stubAgent) GetRestoreCommand(id string) string { return "resume " + id }
func (stubAgent) GetRestoreCommand(id string) string { return "resume " + id }
type stubWorkspace struct {
root string