mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Fix non-updated constructor usage
Fix a constructor usage that tried to use an array instead of a list.
This commit is contained in:
parent
6dd20ed13a
commit
46f376e40b
2 changed files with 10 additions and 10 deletions
|
|
@ -107,7 +107,7 @@ public class MetadataRendererTest {
|
|||
assertThat(metadata).hasSize(1);
|
||||
assertThat(metadata.get(0).length()).isEqualTo(1);
|
||||
TextInformationFrame expectedId3Frame =
|
||||
new TextInformationFrame("TXXX", "Test description", new String[] { "Test value" });
|
||||
new TextInformationFrame("TXXX", "Test description", Collections.singletonList("Test value"));
|
||||
assertThat(metadata.get(0).get(0)).isEqualTo(expectedId3Frame);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue