[jboss-cvs] JBossAS SVN: r63802 - branches/Branch_4_2/testsuite/src/main/org/jboss/test/tm/webmbean.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jul 3 16:31:15 EDT 2007


Author: adrian at jboss.org
Date: 2007-07-03 16:31:15 -0400 (Tue, 03 Jul 2007)
New Revision: 63802

Modified:
   branches/Branch_4_2/testsuite/src/main/org/jboss/test/tm/webmbean/WebTest.java
Log:
[JBAS-4488] - fix the web context name

Modified: branches/Branch_4_2/testsuite/src/main/org/jboss/test/tm/webmbean/WebTest.java
===================================================================
--- branches/Branch_4_2/testsuite/src/main/org/jboss/test/tm/webmbean/WebTest.java	2007-07-03 15:03:47 UTC (rev 63801)
+++ branches/Branch_4_2/testsuite/src/main/org/jboss/test/tm/webmbean/WebTest.java	2007-07-03 20:31:15 UTC (rev 63802)
@@ -49,7 +49,7 @@
          ByteChunk input = new ByteChunk(1024);
          ByteChunk output = new ByteChunk(1024);
          org.apache.coyote.Request req = new org.apache.coyote.Request();
-         req.decodedURI().setString("/jmx-console/test1.jsp");
+         req.decodedURI().setString("/webbmtcleanuptest/test1.jsp");
          req.method().setString("GET");
          org.apache.coyote.Response resp = new org.apache.coyote.Response();
          handler.process(req, input, resp, output);
@@ -59,7 +59,7 @@
          input = new ByteChunk(1024);
          output = new ByteChunk(1024);
          req = new org.apache.coyote.Request();
-         req.decodedURI().setString("/jmx-console/test2.jsp");
+         req.decodedURI().setString("/webbmtcleanuptest/test2.jsp");
          req.method().setString("GET");
          resp = new org.apache.coyote.Response();
          handler.process(req, input, resp, output);




More information about the jboss-cvs-commits mailing list