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

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

Merge "Fixing null check causing test breakage" into main

parents c072d44b efc3c464
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -209,7 +209,8 @@ public class PrivateProfileManagerTest {

        Mockito.verify(mContext).startActivity(acIntent.capture());
        assertEquals("Intent Action is different",
                expectedIntent.toUri(0), acIntent.getValue().toUri(0));
                expectedIntent == null ? null : expectedIntent.toUri(0),
                acIntent.getValue() == null ? null : acIntent.getValue().toUri(0));
    }

    private static void awaitTasksCompleted() throws Exception {