diff --git a/tests/robotests/src/com/android/settings/MasterClearTest.java b/tests/robotests/src/com/android/settings/MasterClearTest.java index c9efe8e1545..7e9ef4048a5 100644 --- a/tests/robotests/src/com/android/settings/MasterClearTest.java +++ b/tests/robotests/src/com/android/settings/MasterClearTest.java @@ -355,6 +355,7 @@ public class MasterClearTest { assertEquals(TEST_CONFIRMATION_CLASS, actualIntent.getComponent().getClassName()); } + @Test public void testShowAccountCredentialConfirmation() { // Finally mock out the startActivityForResultCall doNothing().when(mMasterClear) diff --git a/tests/unit/src/com/android/settings/wifi/WifiSettingsUiTest.java b/tests/unit/src/com/android/settings/wifi/WifiSettingsUiTest.java index e1005ea6810..bc6caf654ef 100644 --- a/tests/unit/src/com/android/settings/wifi/WifiSettingsUiTest.java +++ b/tests/unit/src/com/android/settings/wifi/WifiSettingsUiTest.java @@ -61,6 +61,7 @@ import com.android.settingslib.wifi.WifiTrackerFactory; import com.google.common.collect.Lists; import org.junit.Before; +import org.junit.Ignore; import org.junit.Rule; import org.junit.Test; import org.junit.runner.RunWith; @@ -342,6 +343,8 @@ public class WifiSettingsUiTest { onView(withId(resourceId(ID, PASSWORD))).check(matches(isDisplayed())); } + @Ignore("b/73796195") + @Test public void onConnectedChanged_shouldNotFetchAPs() { setWifiState(WifiManager.WIFI_STATE_ENABLED); when(mWifiTracker.isConnected()).thenReturn(true);