summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-05-27 13:29:00 -0700
committerYorke Lee <yorkelee@google.com>2014-05-27 13:29:00 -0700
commitcdf36015580adf63bd32d2f1cdbf526918de9b88 (patch)
tree3126fbfae40b379cb3fab3c6fc3342d236e383c9 /tests
parentf6c86e3b64812407ca965497da9d739e319428af (diff)
downloadandroid_packages_apps_Dialer-cdf36015580adf63bd32d2f1cdbf526918de9b88.tar.gz
android_packages_apps_Dialer-cdf36015580adf63bd32d2f1cdbf526918de9b88.tar.bz2
android_packages_apps_Dialer-cdf36015580adf63bd32d2f1cdbf526918de9b88.zip
Fix build break
Change-Id: I84dd2667227f40962b8d034c35c5e56f854221e3
Diffstat (limited to 'tests')
-rw-r--r--tests/src/com/android/dialer/widget/ActionBarControllerTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/com/android/dialer/widget/ActionBarControllerTest.java b/tests/src/com/android/dialer/widget/ActionBarControllerTest.java
index 919a07bac..c67ea35aa 100644
--- a/tests/src/com/android/dialer/widget/ActionBarControllerTest.java
+++ b/tests/src/com/android/dialer/widget/ActionBarControllerTest.java
@@ -114,14 +114,14 @@ public class ActionBarControllerTest extends InstrumentationTestCase {
public void testOnSearchUiExited() {
// ActionBar shown previously before entering searchUI
mSearchBox.expand(true, false);
- mSearchBox.makeInvisible();
+ mSearchBox.setVisible(false);
mActivityUi.shouldShowActionBar = true;
mActionBarController.onSearchUiExited();
assertActionBarState(false, false, false);
// ActionBar slid up previously before entering searchUI
mSearchBox.collapse(false);
- mSearchBox.makeInvisible();
+ mSearchBox.setVisible(false);
mActivityUi.shouldShowActionBar = false;
mActionBarController.onSearchUiExited();
assertActionBarState(false, false, true);