summaryrefslogtreecommitdiffstats
path: root/test-runner
diff options
context:
space:
mode:
authorCostin Manolache <costin@google.com>2009-09-29 18:58:36 -0700
committerCostin Manolache <costin@google.com>2009-09-29 22:52:05 -0700
commit3348f14b3d46b172a5b557f81aac526b7e8bf5fb (patch)
treeaf66a1968163d529addff9c15b776102a3ecf91a /test-runner
parentb4ee8349cc7e64a264335ee2dfecc00980eca07a (diff)
downloadframeworks_base-3348f14b3d46b172a5b557f81aac526b7e8bf5fb.zip
frameworks_base-3348f14b3d46b172a5b557f81aac526b7e8bf5fb.tar.gz
frameworks_base-3348f14b3d46b172a5b557f81aac526b7e8bf5fb.tar.bz2
Remove GAIA string
Diffstat (limited to 'test-runner')
-rw-r--r--test-runner/android/test/SyncBaseInstrumentation.java2
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();