Merge pointer/tts categories into one without heading

Change-Id: I75dd6472a6eb4929773222844872d43027122f3c
Fix: 35960300
Test: robotests
This commit is contained in:
Fan Zhang
2017-04-27 12:43:42 -07:00
parent 8352421baa
commit 496fd0ca34
5 changed files with 4 additions and 30 deletions

View File

@@ -38,9 +38,7 @@ import java.util.List;
import static com.google.common.truth.Truth.assertThat;
import static org.mockito.Matchers.any;
import static org.mockito.Matchers.anyString;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
@@ -94,7 +92,7 @@ public class TtsPreferenceControllerTest {
mController.displayPreference(mScreen);
// Remove both category and preference.
verify(mScreen, times(2)).removePreference(any(Preference.class));
// Remove preference.
verify(mScreen).removePreference(any(Preference.class));
}
}