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

Commit 834ce49d authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix assertion in VisibilityPreferenceControllerTest."

parents d3d1cf75 9d01fe68
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -209,7 +209,7 @@ public class VisibilityPreferenceControllerTest {
            ArgumentCaptor.forClass(CharSequence[].class);
        verify(pref, times(1)).setEntryValues(argumentCaptor.capture());
        assertFalse(toStringList(argumentCaptor.getValue())
                .contains(VISIBILITY_NO_OVERRIDE));
                .contains(String.valueOf(VISIBILITY_NO_OVERRIDE)));
    }

    @Test
@@ -228,7 +228,7 @@ public class VisibilityPreferenceControllerTest {
            ArgumentCaptor.forClass(CharSequence[].class);
        verify(pref, times(1)).setEntryValues(argumentCaptor.capture());
        assertFalse(toStringList(argumentCaptor.getValue())
                .contains(VISIBILITY_NO_OVERRIDE));
                .contains(String.valueOf(VISIBILITY_NO_OVERRIDE)));
    }

    @Test