Merge "Avoid un-registration when mRealInstrumentation is null." into tm-qpr-dev am: e70c76e281 am: ed29280b5c
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20946639 Change-Id: Ia5a52212be0cb5924a0d90d86a4e2f87e73b85ba Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
@@ -132,8 +132,10 @@ public abstract class SysuiTestCase {
|
||||
|
||||
@After
|
||||
public void SysuiTeardown() {
|
||||
InstrumentationRegistry.registerInstance(mRealInstrumentation,
|
||||
InstrumentationRegistry.getArguments());
|
||||
if (mRealInstrumentation != null) {
|
||||
InstrumentationRegistry.registerInstance(mRealInstrumentation,
|
||||
InstrumentationRegistry.getArguments());
|
||||
}
|
||||
if (TestableLooper.get(this) != null) {
|
||||
TestableLooper.get(this).processAllMessages();
|
||||
// Must remove static reference to this test object to prevent leak (b/261039202)
|
||||
|
||||
Reference in New Issue
Block a user