]> source.dussan.org Git - poi.git/commitdiff
tweak to use platform line separator so tests can pass on Windows as well as Linux.
authorGreg Woolsey <gwoolsey@apache.org>
Fri, 12 May 2017 22:13:30 +0000 (22:13 +0000)
committerGreg Woolsey <gwoolsey@apache.org>
Fri, 12 May 2017 22:13:30 +0000 (22:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1795026 13f79535-47bb-0310-9956-ffa450edef68

src/integrationtest/org/apache/poi/stress/HPSFFileHandler.java

index 77ad5ef06120b8e225dcf24edeabdce37f0d401a..5fe154c1d9ebcdc69890ecd401b128fd079f34c3 100644 (file)
@@ -44,6 +44,8 @@ import org.junit.Assume;
 import org.junit.Test;
 
 public class HPSFFileHandler extends POIFSFileHandler {
+    private static final String NL = System.getProperty("line.separator");
+    
     private static File copyOutput = null;
     
     static final Set<String> EXCLUDES_HANDLE_ADD = unmodifiableHashSet(
@@ -108,7 +110,7 @@ public class HPSFFileHandler extends POIFSFileHandler {
         try {
             System.setOut(psNew);
             CopyCompare.main(new String[]{file.getAbsolutePath(), copyOutput.getAbsolutePath()});
-            assertEquals("Equal\n", new String(bos.toByteArray(), Charset.forName("UTF-8")));
+            assertEquals("Equal" + NL, new String(bos.toByteArray(), Charset.forName("UTF-8")));
         } finally {
             System.setOut(ps);
         }