Skip to content

Commit

Permalink
Improve TestParseOptionsParseFramesWithSequenceFrames
Browse files Browse the repository at this point in the history
  • Loading branch information
n10v committed Nov 7, 2017
1 parent dd70f96 commit 373ede9
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,11 @@ func TestParseOptionsParseFramesWithSequenceFrames(t *testing.T) {
if tag.Artist() != "Artist" {
t.Errorf("Expected artist: %q, got %q", "Artist", tag.Artist())
}

usltFramesLen := len(tag.GetFrames("USLT"))
if usltFramesLen > 0 {
t.Errorf("Expected USLT frames: %v, got %v", 0, usltFramesLen)
}
}

// TestParseInvalidFrameSize creates an empty tag, writes tag header,
Expand Down

0 comments on commit 373ede9

Please sign in to comment.