Made TextFormatTest line-ending neutral
This commit is contained in:
parent
734746ed55
commit
560983ad1d
1 changed files with 2 additions and 2 deletions
|
@ -91,7 +91,7 @@ public class TextFormatTest extends TestCase {
|
|||
// C++ and Java TextFormat classes, so we need to conform.
|
||||
javaText = javaText.replace(".0\n", "\n");
|
||||
|
||||
assertEquals(allFieldsSetText, javaText);
|
||||
assertEquals(allFieldsSetText.replace("\r\n", "\n"), javaText.replace("\r\n", "\n"));
|
||||
}
|
||||
|
||||
/** Print TestAllExtensions and compare with golden file. */
|
||||
|
@ -103,7 +103,7 @@ public class TextFormatTest extends TestCase {
|
|||
// C++ and Java TextFormat classes, so we need to conform.
|
||||
javaText = javaText.replace(".0\n", "\n");
|
||||
|
||||
assertEquals(allExtensionsSetText, javaText);
|
||||
assertEquals(allExtensionsSetText.replace("\r\n", "\n"), javaText.replace("\r\n", "\n"));
|
||||
}
|
||||
|
||||
public void testPrintUnknownFields() throws Exception {
|
||||
|
|
Loading…
Add table
Reference in a new issue