From faaa75d61489283285554ddc322ff43f2d666e45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Lipinsk=C3=BD?= <6032558+Mr-Tao@users.noreply.github.com> Date: Sat, 29 Aug 2026 21:54:08 +0200 Subject: [PATCH] test(websocket): group imports --- pkg/service/soundtouchweb/websocket_test.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkg/service/soundtouchweb/websocket_test.go b/pkg/service/soundtouchweb/websocket_test.go index 090635ed..b450d697 100644 --- a/pkg/service/soundtouchweb/websocket_test.go +++ b/pkg/service/soundtouchweb/websocket_test.go @@ -2,10 +2,6 @@ package soundtouchweb import ( "errors" - "github.com/gesellix/bose-soundtouch/pkg/client" - "github.com/gesellix/bose-soundtouch/pkg/models" - "github.com/gesellix/bose-soundtouch/pkg/service/soundtouchweb/webtypes" - "github.com/gorilla/websocket" "net/http" "net/http/httptest" "strings" @@ -13,6 +9,11 @@ import ( "sync/atomic" "testing" "time" + + "github.com/gesellix/bose-soundtouch/pkg/client" + "github.com/gesellix/bose-soundtouch/pkg/models" + "github.com/gesellix/bose-soundtouch/pkg/service/soundtouchweb/webtypes" + "github.com/gorilla/websocket" ) func TestUpdateDeviceStatusRefreshesGroup(t *testing.T) {