Author: markt
Date: Fri Oct 24 22:57:38 2014
New Revision: 1634152
URL: http://svn.apache.org/r1634152
Log:
Follow up to r1634089.
Fix some additional test failures with the stricter escaping rules.
Modified:
tomcat/trunk/test/org/apache/jasper/compiler/TestELParser.java
Modified: tomcat/trunk/test/org/apache/jasper/compiler/TestELParser.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/jasper/compiler/TestELParser.java?rev=1634152&r1=1634151&r2=1634152&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/jasper/compiler/TestELParser.java (original)
+++ tomcat/trunk/test/org/apache/jasper/compiler/TestELParser.java Fri Oct 24
22:57:38 2014
@@ -238,13 +238,13 @@ public class TestELParser {
@Test
public void testEscape04() throws JasperException {
- doTestParser("\\$", "$");
+ doTestParser("\\$", "\\$");
}
@Test
public void testEscape05() throws JasperException {
- doTestParser("\\#", "#");
+ doTestParser("\\#", "\\#");
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]