am c82d63c2: Merge "Replace Maps with UserDictionarySettings to trigger database writes"

* commit 'c82d63c2809dde3f2aa27412699da4aeaa9298d7':
  Replace Maps with UserDictionarySettings to trigger database writes
diff --git a/tests/tests/security/src/android/security/cts/SqliteJournalLeakTest.java b/tests/tests/security/src/android/security/cts/SqliteJournalLeakTest.java
old mode 100644
new mode 100755
index 1f8b81b..f89cb4c
--- a/tests/tests/security/src/android/security/cts/SqliteJournalLeakTest.java
+++ b/tests/tests/security/src/android/security/cts/SqliteJournalLeakTest.java
@@ -81,10 +81,9 @@
         webIntent.setData(Uri.parse("http:///localhost"));

         webIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

         getContext().startActivity(webIntent);

-        Intent geoIntent = new Intent(Intent.ACTION_VIEW);

-        geoIntent.setData(Uri.parse("geo:0,0"));

-        geoIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

-        getContext().startActivity(geoIntent);

+        Intent dictIntent = new Intent("android.settings.USER_DICTIONARY_SETTINGS");

+        dictIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);

+        getContext().startActivity(dictIntent);

     }

 

     private void checkDatabases(String suffix) {