From adecf1fd2e55a0605d03f36952846f6336506d37 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 30 Apr 2026 10:45:30 +0300 Subject: Rename module to codeberg.org/snonux/play (task aa) - Update go.mod module path - Replace all internal imports from github.com/paul/kiss-media-player to codeberg.org/snonux/play - Run go mod tidy and gofmt -w . --- internal/probe/probe_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'internal/probe/probe_test.go') diff --git a/internal/probe/probe_test.go b/internal/probe/probe_test.go index 9c05846..077c88c 100644 --- a/internal/probe/probe_test.go +++ b/internal/probe/probe_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/paul/kiss-media-player/internal/model" + "codeberg.org/snonux/play/internal/model" ) func TestParseFFprobeOutput(t *testing.T) { @@ -61,9 +61,9 @@ func TestParseFFprobeOutput(t *testing.T) { want: &model.Metadata{Codec: "vp9"}, }, { - name: "no format or streams", + name: "no format or streams", input: `{"format":{},"streams":[]}`, - want: &model.Metadata{}, + want: &model.Metadata{}, }, } -- cgit v1.2.3