Przeglądaj źródła

Removed printStackTrace from expected exception.

Luke Taylor 19 lat temu
rodzic
commit
c378779610

+ 2 - 1
core/src/test/java/org/acegisecurity/ui/session/HttpSessionEventPublisherTests.java

@@ -32,6 +32,7 @@ import org.acegisecurity.MockApplicationContext;
  * The HttpSessionEventPublisher tests
  *
  * @author Ray Krueger
+ * @version $Id$
  */
 public class HttpSessionEventPublisherTests extends TestCase {
     //~ Methods ================================================================
@@ -90,7 +91,7 @@ public class HttpSessionEventPublisherTests extends TestCase {
             pub.getContext();
             fail("IllegalArgumentException expected, the context is null");
         } catch (IllegalArgumentException e) {
-            e.printStackTrace();
+            assertTrue(true);
         }
     }
 }