summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java b/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java
index adde151..f22edcb 100644
--- a/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java
+++ b/test/src/java/com/healthmarketscience/jackcess/DatabaseTest.java
@@ -321,8 +321,8 @@ public class DatabaseTest extends TestCase {
try {
table.addRow(new BigDecimal("342523234145343543.3453"));
- fail("ArithmeticException should have been thrown");
- } catch(ArithmeticException e) {
+ fail("IOException should have been thrown");
+ } catch(IOException e) {
// ignored
}
}