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 <noreply@anthropic.com>
This commit is contained in:
jedarden 2026-04-10 22:10:55 -04:00
parent 6704bdaab8
commit ffade74fcf

View file

@ -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.