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());