aboutsummaryrefslogtreecommitdiffstats
path: root/src/testcases/org
diff options
context:
space:
mode:
authorJosh Micich <josh@apache.org>2008-05-16 19:24:47 +0000
committerJosh Micich <josh@apache.org>2008-05-16 19:24:47 +0000
commitf474243bc8aa9d3ef0a3008910866a9b14142daa (patch)
tree7a143e818ece5290a8322d78c3c84da20c06e485 /src/testcases/org
parentc2f389c43700d44ef95f8074f119f86f16bedc36 (diff)
downloadpoi-f474243bc8aa9d3ef0a3008910866a9b14142daa.tar.gz
poi-f474243bc8aa9d3ef0a3008910866a9b14142daa.zip
fixed bug number in junit msg - from r656893 bug 44523
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@657180 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases/org')
-rw-r--r--src/testcases/org/apache/poi/hssf/usermodel/TestHSSFWorkbook.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFWorkbook.java b/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFWorkbook.java
index 587e907925..cb5b3d3554 100644
--- a/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFWorkbook.java
+++ b/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFWorkbook.java
@@ -232,11 +232,11 @@ public final class TestHSSFWorkbook extends TestCase {
// Demonstrate bug 44525:
// Well... not quite, since isActive + isSelected were also added in the same bug fix
if (sheet1.isSelected()) {
- throw new AssertionFailedError("Identified bug 44525 a");
+ throw new AssertionFailedError("Identified bug 44523 a");
}
wb.setActiveSheet(1);
if (sheet1.isActive()) {
- throw new AssertionFailedError("Identified bug 44525 b");
+ throw new AssertionFailedError("Identified bug 44523 b");
}
confirmActiveSelected(sheet1, false);