Fixed "failure to launch" reporting in junit; was using the wrong URL.

Review by: knorton (desk check)


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2255 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/junit/public/junit.html b/user/src/com/google/gwt/junit/public/junit.html
index c652ddd..ebefbe4 100644
--- a/user/src/com/google/gwt/junit/public/junit.html
+++ b/user/src/com/google/gwt/junit/public/junit.html
@@ -39,7 +39,7 @@
 
 function junitError(msg) {
   var xmlHttpRequest = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
-  xmlHttpRequest.open('POST', 'loadError', true);
+  xmlHttpRequest.open('POST', 'junithost/loadError', true);
   xmlHttpRequest.setRequestHeader('Content-Type', 'text/plain; charset=utf-8');
   xmlHttpRequest.send(msg);
 }