summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2014-05-27 20:36:34 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-05-27 20:36:34 +0000
commite228771075851bf15127959cb72e7c5dcc30d570 (patch)
tree3126fbfae40b379cb3fab3c6fc3342d236e383c9
parent89af75667217c051fd513f74ca0d53620570fdec (diff)
parentcdf36015580adf63bd32d2f1cdbf526918de9b88 (diff)
am cdf36015: Fix build break
* commit 'cdf36015580adf63bd32d2f1cdbf526918de9b88': Fix build break
-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);