mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Fix tests
This commit is contained in:
parent
7e2def80e5
commit
2a32d98ece
2 changed files with 10 additions and 6 deletions
|
@ -115,7 +115,7 @@ var _ = Describe("MediaRetrievalController", func() {
|
|||
const syncedLyrics = "[00:18.80]We're no strangers to love\n[00:22.801]You know the rules and so do I"
|
||||
const unsyncedLyrics = "We're no strangers to love\nYou know the rules and so do I"
|
||||
const metadata = "[ar:Rick Astley]\n[ti:That one song]\n[offset:-100]"
|
||||
var times = []int64{int64(18800), int64(22801)}
|
||||
var times = []int64{18800, 22801}
|
||||
|
||||
compareResponses := func(actual *responses.LyricsList, expected responses.LyricsList) {
|
||||
Expect(actual).ToNot(BeNil())
|
||||
|
@ -171,8 +171,10 @@ var _ = Describe("MediaRetrievalController", func() {
|
|||
compareResponses(response.LyricsList, responses.LyricsList{
|
||||
StructuredLyrics: responses.StructuredLyrics{
|
||||
{
|
||||
Lang: "eng",
|
||||
Synced: true,
|
||||
Lang: "eng",
|
||||
DisplayArtist: "Rick Astley",
|
||||
DisplayTitle: "Never Gonna Give You Up",
|
||||
Synced: true,
|
||||
Line: []responses.Line{
|
||||
{
|
||||
Start: ×[0],
|
||||
|
@ -185,8 +187,10 @@ var _ = Describe("MediaRetrievalController", func() {
|
|||
},
|
||||
},
|
||||
{
|
||||
Lang: "xxx",
|
||||
Synced: false,
|
||||
Lang: "xxx",
|
||||
DisplayArtist: "Rick Astley",
|
||||
DisplayTitle: "Never Gonna Give You Up",
|
||||
Synced: false,
|
||||
Line: []responses.Line{
|
||||
{
|
||||
Value: "We're no strangers to love",
|
||||
|
|
|
@ -813,7 +813,7 @@ var _ = Describe("Responses", func() {
|
|||
|
||||
Describe("with data", func() {
|
||||
BeforeEach(func() {
|
||||
times := []int64{int64(18800), int64(22801)}
|
||||
times := []int64{18800, 22801}
|
||||
|
||||
response.LyricsList.StructuredLyrics = StructuredLyrics{
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue