annotated previous changelist(641964) with wrong buzilla number. Previous changes were for bug #44695.

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@641967 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Josh Micich 2008-03-27 20:15:13 +00:00
parent 60c8dc5688
commit 0d7c6a7b78
2 changed files with 3 additions and 3 deletions

View File

@ -45,7 +45,7 @@ public final class ExternalNameRecord extends Record {
private short field_2_index;
private short field_3_not_used;
private String field_4_name;
private Ptg[] field_5_name_definition; // TODO - junits for name definition field
private Ptg[] field_5_name_definition; // TODO - junits for name definition field
public ExternalNameRecord(RecordInputStream in) {
super(in);

View File

@ -40,7 +40,7 @@ public final class TestExternalNameRecord extends TestCase {
TestcaseRecordInputStream.confirmRecordEncoding(0x0023, dataFDS, enr.serialize());
} catch (ArrayIndexOutOfBoundsException e) {
if(e.getMessage().equals("15")) {
throw new AssertionFailedError("Identified bug 44691");
throw new AssertionFailedError("Identified bug 44695");
}
}
}
@ -48,7 +48,7 @@ public final class TestExternalNameRecord extends TestCase {
public void testBasicSize() {
ExternalNameRecord enr = createSimpleENR();
if(enr.getRecordSize() == 13) {
throw new AssertionFailedError("Identified bug 44691");
throw new AssertionFailedError("Identified bug 44695");
}
assertEquals(17, enr.getRecordSize());
}