From b9538406b1b6c6824a76800b433ec25726b13b87 Mon Sep 17 00:00:00 2001 From: Dennis Lundberg Date: Wed, 22 Aug 2007 22:19:45 +0000 Subject: [PATCH] Fix failing tests due to r563165. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/logging/trunk@568760 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/logging/jdk14/CustomConfigTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/org/apache/commons/logging/jdk14/CustomConfigTestCase.java b/src/test/org/apache/commons/logging/jdk14/CustomConfigTestCase.java index e1883ae..444637f 100644 --- a/src/test/org/apache/commons/logging/jdk14/CustomConfigTestCase.java +++ b/src/test/org/apache/commons/logging/jdk14/CustomConfigTestCase.java @@ -317,7 +317,7 @@ public class CustomConfigTestCase extends DefaultConfigTestCase { if (thrown) { assertNotNull("LogRecord thrown", record.getThrown()); assertTrue("LogRecord thrown type", - record.getThrown() instanceof IndexOutOfBoundsException); + record.getThrown() instanceof DummyException); } else { assertNull("LogRecord thrown", record.getThrown());