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/repository/sqlite_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'internal/repository/sqlite_test.go') diff --git a/internal/repository/sqlite_test.go b/internal/repository/sqlite_test.go index 1aeb23a..0d5e797 100644 --- a/internal/repository/sqlite_test.go +++ b/internal/repository/sqlite_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/paul/kiss-media-player/internal/model" + "codeberg.org/snonux/play/internal/model" ) func newTestStore(t *testing.T) *SQLite { @@ -326,9 +326,9 @@ func TestSQLite_MediaRepo(t *testing.T) { {"ab_c", []int64{m1}}, {"de%f", []int64{m2}}, {"gh\\ij", []int64{m3}}, - {"_", []int64{m1}}, // literal underscore must match only ab_c.mp4 - {"%", []int64{m2}}, // literal percent must match only de%f.mp4 - {"\\", []int64{m3}}, // literal backslash must match only gh\ij.mp4 + {"_", []int64{m1}}, // literal underscore must match only ab_c.mp4 + {"%", []int64{m2}}, // literal percent must match only de%f.mp4 + {"\\", []int64{m3}}, // literal backslash must match only gh\ij.mp4 } { res, err := s.ListMedia(ctx, MediaFilter{Search: tc.search}) if err != nil { -- cgit v1.2.3