mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 04:57:37 +03:00
Removed debug prints
This commit is contained in:
parent
c64a0f8242
commit
cff829fb75
1 changed files with 0 additions and 3 deletions
|
@ -3,7 +3,6 @@ package utils
|
|||
import (
|
||||
"testing"
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func TestParseIndexGroup(t *testing.T) {
|
||||
|
@ -20,7 +19,6 @@ func TestParseIndexGroup(t *testing.T) {
|
|||
|
||||
Convey("An entry with a group", t, func() {
|
||||
parsed := ParseIndexGroups("A-C(ABC) Z")
|
||||
fmt.Println("\n>>>>>>", parsed)
|
||||
|
||||
So(parsed, ShouldContainKey, "A")
|
||||
So(parsed["A"], ShouldEqual, "A-C")
|
||||
|
@ -34,7 +32,6 @@ func TestParseIndexGroup(t *testing.T) {
|
|||
})
|
||||
Convey("Correctly parses UTF-8", t, func() {
|
||||
parsed := ParseIndexGroups("UTF8(宇A海)")
|
||||
fmt.Println("\n>>>>>>", parsed)
|
||||
|
||||
So(parsed, ShouldContainKey, "宇")
|
||||
So(parsed["宇"], ShouldEqual, "UTF8")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue