1
0
mirror of synced 2026-08-05 01:36:56 +00:00

SEC-1798: Remove internal evaluation of EL in JSP tag implementations.

This commit is contained in:
Luke Taylor
2011-08-12 19:42:53 +01:00
parent 45d938566c
commit 503ac9ae7c
6 changed files with 6 additions and 25 deletions
@@ -164,8 +164,7 @@ public class AuthorizeTagTests {
@Test
public void testOutputsBodyWhenNotGrantedSatisfied() throws JspException {
authorizeTag.setIfNotGranted("ROLE_BANKER");
assertEquals(Tag.EVAL_BODY_INCLUDE,
authorizeTag.doStartTag());
assertEquals(Tag.EVAL_BODY_INCLUDE, authorizeTag.doStartTag());
}
@Test