diff --git a/src/test/java/org/glassfish/el/test/StaticRefTest.java b/src/test/java/org/glassfish/el/test/StaticRefTest.java index a5a20d57..653ad958 100644 --- a/src/test/java/org/glassfish/el/test/StaticRefTest.java +++ b/src/test/java/org/glassfish/el/test/StaticRefTest.java @@ -55,8 +55,6 @@ public void tearDown() { @Test public void testStaticRef() { // Pre imported java.lang classes -// assertTrue((Boolean)elp.eval("T(java.lang.Boolean).TRUE")); -// assertTrue((Boolean)elp.eval("T(Boolean).TRUE")); assertTrue((Boolean)elp.eval("Boolean.TRUE")); assertTrue((Boolean)elp.eval("Boolean.TRUE")); // test caching Boolean } @@ -70,7 +68,6 @@ public void testClass() { @Test public void testConstructor() { -// assertEquals(new Integer(1001), elp.eval("T(Integer)(1001)")); assertEquals(new Integer(1001), elp.eval("Integer(1001)")); }