diff options
author | Rodrigo Damazio Bovendorp <rdamazio@google.com> | 2011-08-01 17:10:58 -0300 |
---|---|---|
committer | Rodrigo Damazio Bovendorp <rdamazio@google.com> | 2011-08-01 17:10:58 -0300 |
commit | 3fe3f7328fb4a6f5e067eedc76086dd7b44ffc25 (patch) | |
tree | 789a9f5a6ef0aff93a9477dcaf09732c39af62c2 /test-runner/src | |
parent | f382dc2d97e22f6bcce7aa8250d797edc616719e (diff) | |
download | frameworks_base-3fe3f7328fb4a6f5e067eedc76086dd7b44ffc25.zip frameworks_base-3fe3f7328fb4a6f5e067eedc76086dd7b44ffc25.tar.gz frameworks_base-3fe3f7328fb4a6f5e067eedc76086dd7b44ffc25.tar.bz2 |
Fixing initialization cleanup in activity instrumentation test case
Change-Id: I798fed657ccdc27430edc07d1e911b34c45426b5
Diffstat (limited to 'test-runner/src')
-rw-r--r-- | test-runner/src/android/test/ActivityInstrumentationTestCase2.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test-runner/src/android/test/ActivityInstrumentationTestCase2.java b/test-runner/src/android/test/ActivityInstrumentationTestCase2.java index e8570bd..24b125e 100644 --- a/test-runner/src/android/test/ActivityInstrumentationTestCase2.java +++ b/test-runner/src/android/test/ActivityInstrumentationTestCase2.java @@ -147,8 +147,8 @@ public abstract class ActivityInstrumentationTestCase2<T extends Activity> protected void setUp() throws Exception { super.setUp(); - boolean mInitialTouchMode = false; - Intent mActivityIntent = null; + mInitialTouchMode = false; + mActivityIntent = null; } @Override |