From dafe710ab393c367cabebac162bb569cb8182d3a Mon Sep 17 00:00:00 2001 From: Arnold Szabo Date: Mon, 22 Feb 2021 20:36:06 +0100 Subject: [PATCH] Remove extra space from SsaDecoderTest.java. --- .../com/google/android/exoplayer2/text/ssa/SsaDecoderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/test/java/com/google/android/exoplayer2/text/ssa/SsaDecoderTest.java b/library/core/src/test/java/com/google/android/exoplayer2/text/ssa/SsaDecoderTest.java index 8dc98d3335..5ab8f8ed1d 100644 --- a/library/core/src/test/java/com/google/android/exoplayer2/text/ssa/SsaDecoderTest.java +++ b/library/core/src/test/java/com/google/android/exoplayer2/text/ssa/SsaDecoderTest.java @@ -330,7 +330,7 @@ public final class SsaDecoderTest { Cue firstCue = Iterables.getOnlyElement(subtitle.getCues(subtitle.getEventTime(0))); assertThat(firstCue.textSize).isEqualTo(30f/720f); assertThat(firstCue.textSizeType).isEqualTo(Cue.TEXT_SIZE_TYPE_FRACTIONAL_IGNORE_PADDING); - Cue secondCue = Iterables.getOnlyElement(subtitle.getCues(subtitle.getEventTime(2 ))); + Cue secondCue = Iterables.getOnlyElement(subtitle.getCues(subtitle.getEventTime(2))); assertThat(secondCue.textSize).isEqualTo(72.2f/720f); assertThat(secondCue.textSizeType).isEqualTo(Cue.TEXT_SIZE_TYPE_FRACTIONAL_IGNORE_PADDING); }