From 3cdd20883d33ba20c9fbfb67974645a1011fff39 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Fri, 4 Sep 2026 22:52:05 +0200 Subject: [PATCH] chore(player): fix import grouping after rebase conflict resolution goimports grouping regressed to a flat alphabetical block during the i655 rebase's conflict resolution; restore stdlib/third-party grouping. --- 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 ab464923..707db0b2 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) {