mirror of
https://github.com/apache/poi.git
synced 2025-03-06 17:09:08 +00:00
remove unnecessary l
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1903266 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d7d13a11c1
commit
f6a320770b
@ -89,10 +89,10 @@ public final class TestDocumentEncryptionAtom {
|
||||
@Test
|
||||
void recordType() throws IOException {
|
||||
DocumentEncryptionAtom dea1 = new DocumentEncryptionAtom(data_a, 0, data_a.length);
|
||||
assertEquals(12052l, dea1.getRecordType());
|
||||
assertEquals(12052, dea1.getRecordType());
|
||||
|
||||
DocumentEncryptionAtom dea2 = new DocumentEncryptionAtom(data_b, 0, data_b.length);
|
||||
assertEquals(12052l, dea2.getRecordType());
|
||||
assertEquals(12052, dea2.getRecordType());
|
||||
|
||||
assertEquals(199, data_a.length);
|
||||
assertEquals(198, data_b.length);
|
||||
|
@ -39,7 +39,7 @@ public class TestExObjList {
|
||||
// Get the ExObjList
|
||||
ExObjList exObjList = doc.getExObjList(false);
|
||||
assertNotNull(exObjList);
|
||||
assertEquals(1033l, exObjList.getRecordType());
|
||||
assertEquals(1033, exObjList.getRecordType());
|
||||
|
||||
// Check the atom
|
||||
assertNotNull(exObjList.getExObjListAtom());
|
||||
|
Loading…
x
Reference in New Issue
Block a user