Fix emulator tests flakiness

Releasing the player once a sequence has ended seems to make our
emulator tests flaky. Comment out until we find the cause. The player
will still be released from TransformerInternal, when the export ends.

PiperOrigin-RevId: 520886181
This commit is contained in:
kimvde 2023-03-31 12:08:42 +01:00 committed by Marc Baechinger
parent 7ca9668421
commit 9cdf60d791

View File

@ -501,7 +501,9 @@ import java.util.concurrent.atomic.AtomicInteger;
} }
private void release() { private void release() {
handler.post(SequenceAssetLoader.this::release); // TODO(b/276415739): releasing the player earlier causes more release timeouts on emulator
// tests. Figure out what the cause is and uncomment the line below once fixed.
// handler.post(SequenceAssetLoader.this::release);
} }
} }
} }