remove System.out.println() from the test code

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1060787 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yegor Kozlov 2011-01-19 12:28:54 +00:00
parent 8ba44207e6
commit db25367237

View File

@ -667,10 +667,8 @@ public final class TestNameRecord extends TestCase {
byte[] data1 = HexRead.readFromString(record_0x0018 + record_0x03C);
RecordInputStream in1 = TestcaseRecordInputStream.create(data1);
NameRecord nr1 = new NameRecord(in1);
System.out.println(nr1);
assert_bug50244(nr1);
byte[] data2 = nr1.serialize();
assertEquals(data1.length, data2.length);