Author: markt Date: Sun Mar 7 20:29:39 2010 New Revision: 920092 URL: http://svn.apache.org/viewvc?rev=920092&view=rev Log: Extend the no-el test to cover deferred expressions
Modified: tomcat/trunk/test/org/apache/jasper/compiler/TestJspConfig.java tomcat/trunk/test/webapp-2.3/no-el.jsp Modified: tomcat/trunk/test/org/apache/jasper/compiler/TestJspConfig.java URL: http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/jasper/compiler/TestJspConfig.java?rev=920092&r1=920091&r2=920092&view=diff ============================================================================== --- tomcat/trunk/test/org/apache/jasper/compiler/TestJspConfig.java (original) +++ tomcat/trunk/test/org/apache/jasper/compiler/TestJspConfig.java Sun Mar 7 20:29:39 2010 @@ -41,6 +41,7 @@ String result = res.toString(); assertTrue(result.indexOf("<p>00-${'hello world'}</p>") > 0); + assertTrue(result.indexOf("<p>01-#{'hello world'}</p>") > 0); } } Modified: tomcat/trunk/test/webapp-2.3/no-el.jsp URL: http://svn.apache.org/viewvc/tomcat/trunk/test/webapp-2.3/no-el.jsp?rev=920092&r1=920091&r2=920092&view=diff ============================================================================== --- tomcat/trunk/test/webapp-2.3/no-el.jsp (original) +++ tomcat/trunk/test/webapp-2.3/no-el.jsp Sun Mar 7 20:29:39 2010 @@ -17,5 +17,6 @@ <html> <body> <p>00-${'hello world'}</p> + <p>01-#{'hello world'}</p> </body> </html> \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org