| commit | 4f07a72664a9eaf81db47406510a5a344aae971d | [log] [tgz] |
|---|---|---|
| author | gwt.team.jat <gwt.team.jat@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Tue Nov 27 19:49:30 2007 +0000 |
| committer | gwt.team.jat <gwt.team.jat@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Tue Nov 27 19:49:30 2007 +0000 |
| tree | de8704ddaac4988db703261240dc565d21dab339 | |
| parent | e375cdd4b6161c0bd3711cc840f35ce31a936fdf [diff] |
Fix incorrect test that fails in hosted mode. Emily will fix the web mode problem that was masked by the incorrect test. Patch by: jat Review by: ecc (via chat) git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@1544 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/emultest/java/lang/StringTest.java b/user/test/com/google/gwt/emultest/java/lang/StringTest.java index 7f11081..373ab1a 100644 --- a/user/test/com/google/gwt/emultest/java/lang/StringTest.java +++ b/user/test/com/google/gwt/emultest/java/lang/StringTest.java
@@ -255,7 +255,7 @@ trimRightAssertEquals("abc", " \t abc \n "); trimRightAssertEquals("abc", "abc".trim()); trimRightAssertSame("abc", "abc"); - String s = '\23' + "hi"; + String s = '\u0023' + "hi"; trimRightAssertSame(s, s); trimRightAssertEquals("abc", " abc".trim()); trimRightAssertEquals("abc", "abc ".trim());