mirror of
https://github.com/samsonjs/media.git
synced 2026-03-25 09:25:53 +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();
|
||||
player.release();
|
||||
|
||||
assertThat(metadataAfterTransition.title).isEqualTo("title");
|
||||
assertThat(metadataAfterTransition.title.toString()).isEqualTo("title");
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
|
|||
Loading…
Reference in a new issue