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:
parent
6704bdaab8
commit
ffade74fcf
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue