From ee0af288a49dcf2e85e9cf789af41796d834ee7d Mon Sep 17 00:00:00 2001 From: harshitsinghbhandari <24b4506@iitb.ac.in> Date: Sun, 31 May 2026 18:37:06 +0530 Subject: [PATCH] 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. --- backend/internal/integration/lifecycle_sqlite_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/internal/integration/lifecycle_sqlite_test.go b/backend/internal/integration/lifecycle_sqlite_test.go index 214bf0838..e39561109 100644 --- a/backend/internal/integration/lifecycle_sqlite_test.go +++ b/backend/internal/integration/lifecycle_sqlite_test.go @@ -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