Commit c52d155b by kimvde Committed by Marc Baechinger

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
parent 1ac7f3cd
......@@ -501,7 +501,9 @@ import java.util.concurrent.atomic.AtomicInteger;
}
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);
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment