summaryrefslogtreecommitdiffstats
path: root/tests/AndroidTests/src/com/android/unit_tests/TextUtilsTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/AndroidTests/src/com/android/unit_tests/TextUtilsTest.java')
-rw-r--r--tests/AndroidTests/src/com/android/unit_tests/TextUtilsTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/AndroidTests/src/com/android/unit_tests/TextUtilsTest.java b/tests/AndroidTests/src/com/android/unit_tests/TextUtilsTest.java
index 8c1c91f..51e841c 100644
--- a/tests/AndroidTests/src/com/android/unit_tests/TextUtilsTest.java
+++ b/tests/AndroidTests/src/com/android/unit_tests/TextUtilsTest.java
@@ -262,7 +262,7 @@ public class TextUtilsTest extends TestCase {
Map<String, String> fixes = Maps.newHashMap();
fixes.put("a", "<a@gmail.com>");
fixes.put("a b", "<ab@gmail.com>");
- fixes.put("a@b", "<a@gmail.com>");
+ fixes.put("a@b", "<a@b>");
for (Map.Entry<String, String> e : fixes.entrySet()) {
assertEquals(e.getValue(), validator.fixText(e.getKey()).toString());