summaryrefslogtreecommitdiff
path: root/integration-tests/TestApp/app
diff options
context:
space:
mode:
authorGeorge Mount <mount@google.com>2015-05-14 13:49:06 -0700
committerGeorge Mount <mount@google.com>2015-05-14 13:49:06 -0700
commitd5eacf2ecbfaf6d78b3d8aad37876f7fa5a6ba9d (patch)
treee50fde68816cd2b7e406ee0a3bb273fa66e2a22a /integration-tests/TestApp/app
parent3a756d564b245a3b38c27420ee9367a678533b8a (diff)
downloaddata-binding-d5eacf2ecbfaf6d78b3d8aad37876f7fa5a6ba9d.tar.gz
Fix unit test broken due to merge.
Diffstat (limited to 'integration-tests/TestApp/app')
-rw-r--r--integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/NoBindAttributeTest.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/NoBindAttributeTest.java b/integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/NoBindAttributeTest.java
index 0c0befe8..4e834e1f 100644
--- a/integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/NoBindAttributeTest.java
+++ b/integration-tests/TestApp/app/src/androidTest/java/android/databinding/testapp/NoBindAttributeTest.java
@@ -24,7 +24,8 @@ public class NoBindAttributeTest extends BaseDataBinderTest<NotBindAttributeBind
@UiThreadTest
public void testNoBind() throws Throwable {
- assertNotNull(mBinder.view);
- assertEquals("", mBinder.view.getText().toString());
+ initBinder();
+ assertNotNull(getBinder().view);
+ assertEquals("", getBinder().view.getText().toString());
}
}