Merge branch 'wip-2.0' of github.com:eyecatchup/Apktool into eyecatchup-wip-2.0

This commit is contained in:
Connor Tumbleson 2013-12-08 16:45:09 -06:00
commit 0949a6c50f

View File

@ -104,7 +104,8 @@ public class AnalysisTest {
className.substring(1, className.length() - 1));
String smaliContents = readResource(smaliPath);
Assert.assertEquals(smaliContents.replace("\r\n", "\n"), stringWriter.toString().replace("\r\n", "\n"));
Assert.assertEquals(smaliContents.replace("\r", "").replace("\n", System.lineSeparator()),
stringWriter.toString().replace("\r", "").replace("\n", System.lineSeparator()));
}
}