]> source.dussan.org Git - poi.git/commitdiff
Fixed mistake in test case. Constant value was 4 bytes too large (should be max...
authorJosh Micich <josh@apache.org>
Wed, 5 Nov 2008 23:45:42 +0000 (23:45 +0000)
committerJosh Micich <josh@apache.org>
Wed, 5 Nov 2008 23:45:42 +0000 (23:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@711746 13f79535-47bb-0310-9956-ffa450edef68

src/testcases/org/apache/poi/hssf/record/TestUnicodeString.java

index d3b3155bc1b048f88b057156f1227e882e5e5140..2d64002017f23b392c38ef294bfe9ef9da94ef4f 100755 (executable)
@@ -25,7 +25,7 @@ import junit.framework.TestCase;
  * @author Jason Height (jheight at apache.org)
  */
 public final class TestUnicodeString extends TestCase {
-       private static final int MAX_DATA_SIZE = SSTRecord.MAX_RECORD_SIZE;
+    private static final int MAX_DATA_SIZE = RecordInputStream.MAX_RECORD_DATA_SIZE;
 
     /** a 4 character string requiring 16 bit encoding */
     private static final String STR_16_BIT = "A\u591A\u8A00\u8A9E";