diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-30 10:45:30 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-30 10:45:30 +0300 |
| commit | adecf1fd2e55a0605d03f36952846f6336506d37 (patch) | |
| tree | c02af76c7ea906f22c742cf4be83e488e5fcf050 /internal/repository/sqlite_test.go | |
| parent | 0d7063e5c91efeb219a4be5b93525b0837c8d3be (diff) | |
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 .
Diffstat (limited to 'internal/repository/sqlite_test.go')
| -rw-r--r-- | internal/repository/sqlite_test.go | 8 |
1 files changed, 4 insertions, 4 deletions
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 { |
