Skip to content

Commit

Permalink
8262041: javax/xml/jaxp/unittest/common/prettyprint/PrettyPrintTest.j…
Browse files Browse the repository at this point in the history
…ava fails after JDK-8260858

Reviewed-by: lancea, naoto
  • Loading branch information
JoeWang-Java committed Feb 20, 2021
1 parent b10376b commit 4755958
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion test/jaxp/ProblemList.txt
Expand Up @@ -23,4 +23,3 @@
#
###########################################################################

javax/xml/jaxp/unittest/common/prettyprint/PrettyPrintTest.java 8262041 windows-all
Expand Up @@ -190,7 +190,7 @@ public void testIsStandalone_XSLTC(boolean pretty, boolean p, boolean sp,
boolean val, String expected)
throws Exception {
String result = transform(null, expected, false, pretty, p, sp, val);
Assert.assertEquals(result, expected);
Assert.assertEquals(result.replaceAll("\r\n", "\n"), expected);
}

/*
Expand All @@ -203,7 +203,7 @@ public void testIsStandalone_Template(String xsl, boolean pretty, boolean p,
boolean sp, boolean val, String expected)
throws Exception {
String result = transform(xsl, expected, false, pretty, p, sp, val);
Assert.assertEquals(result, expected);
Assert.assertEquals(result.replaceAll("\r\n", "\n"), expected);
}

/*
Expand Down

1 comment on commit 4755958

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.