Remove comments
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 7 Jan 2010 16:35:49 +0000 (16:35 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 7 Jan 2010 16:35:49 +0000 (16:35 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@896920 13f79535-47bb-0310-9956-ffa450edef68

test/org/apache/el/TestELInJsp.java

index c1a721f..f578e80 100644 (file)
@@ -121,7 +121,7 @@ public class TestELInJsp extends TomcatBaseTest {
         
         tomcat.start();
 
-        ByteChunk res = /* getUrl("http://localhost:" + getPort() +
+        ByteChunk res = getUrl("http://localhost:" + getPort() +
                 "/test/bug45451a.jsp");
         
         String result = res.toString();
@@ -131,8 +131,8 @@ public class TestELInJsp extends TomcatBaseTest {
         assertTrue(result.indexOf("02-\\'hello world\\'") > 0);
         assertTrue(result.indexOf("03-\\'hello world\\'") > 0);
         
-        res = */ getUrl("http://localhost:" + getPort() + "/test/bug45451b.jsp");
-        String result = res.toString();
+        res = getUrl("http://localhost:" + getPort() + "/test/bug45451b.jsp");
+        result = res.toString();
         // Warning: JSP attribute escaping != Java String escaping
         assertTrue(result.indexOf("00-2") > 0);
         assertTrue(result.indexOf("01-${1+1}") > 0);