mirror of
https://github.com/samsonjs/media.git
synced 2026-04-25 14:47:40 +00:00
Fix error-prone warning comparing CharSequence with String
PiperOrigin-RevId: 627679923
This commit is contained in:
parent
579386ff27
commit
f9ea4f0444
1 changed files with 1 additions and 1 deletions
|
|
@ -14474,7 +14474,7 @@ public final class ExoPlayerTest {
|
||||||
MediaMetadata metadataAfterTransition = player.getMediaMetadata();
|
MediaMetadata metadataAfterTransition = player.getMediaMetadata();
|
||||||
player.release();
|
player.release();
|
||||||
|
|
||||||
assertThat(metadataAfterTransition.title).isEqualTo("title");
|
assertThat(metadataAfterTransition.title.toString()).isEqualTo("title");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue