diff options
author | Costin Manolache <costin@google.com> | 2009-09-29 22:58:53 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2009-09-29 22:58:53 -0700 |
commit | 264f9b4530d6ecbd9e9d02cf5c61c7b19f4c6376 (patch) | |
tree | b717af1949faca40739282bb18d2df17d8fd0a18 /test-runner | |
parent | 90183823b00ad5ce04948cf03d827a47c82ca445 (diff) | |
parent | 3348f14b3d46b172a5b557f81aac526b7e8bf5fb (diff) | |
download | frameworks_base-264f9b4530d6ecbd9e9d02cf5c61c7b19f4c6376.zip frameworks_base-264f9b4530d6ecbd9e9d02cf5c61c7b19f4c6376.tar.gz frameworks_base-264f9b4530d6ecbd9e9d02cf5c61c7b19f4c6376.tar.bz2 |
am 3348f14b: Remove GAIA string
Merge commit '3348f14b3d46b172a5b557f81aac526b7e8bf5fb' into eclair-plus-aosp
* commit '3348f14b3d46b172a5b557f81aac526b7e8bf5fb':
Remove GAIA string
Diffstat (limited to 'test-runner')
-rw-r--r-- | test-runner/android/test/SyncBaseInstrumentation.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-runner/android/test/SyncBaseInstrumentation.java b/test-runner/android/test/SyncBaseInstrumentation.java index a860bb3..e8d72d9 100644 --- a/test-runner/android/test/SyncBaseInstrumentation.java +++ b/test-runner/android/test/SyncBaseInstrumentation.java @@ -47,7 +47,7 @@ public class SyncBaseInstrumentation extends InstrumentationTestCase { protected void syncProvider(Uri uri, String accountName, String authority) throws Exception { Bundle extras = new Bundle(); extras.putBoolean(ContentResolver.SYNC_EXTRAS_MANUAL, true); - Account account = new Account(accountName, "com.google.GAIA"); + Account account = new Account(accountName, "com.google"); ContentResolver.requestSync(account, authority, extras); long startTimeInMillis = SystemClock.elapsedRealtime(); |