Skip to content

Commit

Permalink
Remove conditional check for no-longer flaky API version
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 472949850
  • Loading branch information
claincly authored and marcbaechinger committed Oct 19, 2022
1 parent 32a2164 commit caefa56
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import androidx.test.ext.junit.runners.AndroidJUnit4;
import com.google.android.exoplayer2.Format;
import com.google.android.exoplayer2.MediaItem;
import com.google.android.exoplayer2.util.Util;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
Expand Down Expand Up @@ -110,11 +109,6 @@ public void clippedMedia_completesWithClippedDuration() throws Exception {

@Test
public void videoEncoderFormatUnsupported_completesWithError() {
// TODO(b/236943611): Re-enable this test after investigating flakiness.
if (Util.SDK_INT == 31) {
return;
}

Transformer transformer =
new Transformer.Builder(context)
.setEncoderFactory(new VideoUnsupportedEncoderFactory(context))
Expand Down

0 comments on commit caefa56

Please sign in to comment.