Merge "Fix PermissionInfoTest#testPermissionInfo" into jb-dev
diff --git a/tests/tests/content/src/android/content/pm/cts/PermissionInfoTest.java b/tests/tests/content/src/android/content/pm/cts/PermissionInfoTest.java
index 3ab8238..599452b 100644
--- a/tests/tests/content/src/android/content/pm/cts/PermissionInfoTest.java
+++ b/tests/tests/content/src/android/content/pm/cts/PermissionInfoTest.java
@@ -25,7 +25,10 @@
 
 public class PermissionInfoTest extends AndroidTestCase {
     private static final String PERMISSION_NAME = "android.permission.INTERNET";
-    private static final String DEFAULT_DISCPRIPTION = "Allows the app to create network sockets.";
+    private static final String DEFAULT_DISCPRIPTION = "Allows the app to create network sockets "
+            + "and use custom network protocols. The browser and other applications provide means "
+            + "to send data to the internet, so this permission is not required to send data to "
+            + "the internet.";
 
     public void testPermissionInfo() throws NameNotFoundException {
         PackageManager pm = getContext().getPackageManager();