Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit eaac1708 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Update test: call official binderDied method" into main

parents 64f3feca 86c0f582
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -219,9 +219,9 @@ public class ProtoLogConfigurationServiceTest {
        Mockito.verify(mSecondMockClientBinder)
                .linkToDeath(mSecondDeathRecipientArgumentCaptor.capture(), anyInt());

        mDeathRecipientArgumentCaptor.getValue().binderDied();
        mDeathRecipientArgumentCaptor.getValue().binderDied(mMockClientBinder);
        Mockito.verify(tracer, never()).trace(any(), any());
        mSecondDeathRecipientArgumentCaptor.getValue().binderDied();
        mSecondDeathRecipientArgumentCaptor.getValue().binderDied(mSecondMockClientBinder);
        Mockito.verify(tracer).trace(any(), eq(mViewerConfigFile.getAbsolutePath()));
    }