Fix the escaping of a String used in one of test methods of JsonpRequestTest

Patch by: amitmanjhi
Review by: jat


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@7688 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/jsonp/client/JsonpRequestTest.java b/user/test/com/google/gwt/jsonp/client/JsonpRequestTest.java
index a9bf26c..c3aefba 100644
--- a/user/test/com/google/gwt/jsonp/client/JsonpRequestTest.java
+++ b/user/test/com/google/gwt/jsonp/client/JsonpRequestTest.java
@@ -184,7 +184,7 @@
   public void testCancel() {
     delayTestFinish(2000);
     // setup a server request that will delay for 500ms
-    JsonpRequest<String> req = jsonp.requestString(echoDelayed("A", 500),
+    JsonpRequest<String> req = jsonp.requestString(echoDelayed("'A'", 500),
         new AssertFailureCallback<String>("A"));
     // cancel it before it comes back
     req.cancel();