From ffade74fcf0c10dc6db1fdeb6f254af2ad0875fb Mon Sep 17 00:00:00 2001 From: jedarden Date: Fri, 10 Apr 2026 22:10:55 -0400 Subject: [PATCH] fix: correct malformed import statement in mqtt client_test The import statement had incorrect syntax with the alias before the package path. Fixed to standard Go import format. Co-Authored-By: Claude Opus 4.6 --- mothership/internal/mqtt/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mothership/internal/mqtt/client_test.go b/mothership/internal/mqtt/client_test.go index bb6ff37..0993d27 100644 --- a/mothership/internal/mqtt/client_test.go +++ b/mothership/internal/mqtt/client_test.go @@ -10,7 +10,7 @@ import ( "time" mqtt "github.com/eclipse/paho.mqtt.golang" - "httputil "net/http/httputil" + "net/http/httputil" ) // TestNewClient validates MQTT client creation.