Commit 3fb6dc04 authored by Adam Blank's avatar Adam Blank
Browse files

Update WikipediaPageTests.java

parent 470328ef
No related merge requests found
Pipeline #3052 failed with stage
in 0 seconds
Showing with 1 addition and 1 deletion
+1 -1
......@@ -65,7 +65,7 @@ public class WikipediaPageTests {
)
public void testGetText(String title, String expectedOutput) {
WikipediaPage page = new WikipediaPage(title);
assertEquals(expectedOutput, page.getText());
assertEquals(expectedOutput.replace("\r\n", "\n"), page.getText());
}
@Order(3)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment