Commit af9c93e6 authored by Adam Blank's avatar Adam Blank
Browse files

Update WikipediaPageTests.java

parent abfb2914
No related merge requests found
Pipeline #3058 canceled with stage
Showing with 1 addition and 1 deletion
+1 -1
...@@ -139,7 +139,7 @@ public class WikipediaPageTests { ...@@ -139,7 +139,7 @@ public class WikipediaPageTests {
myLinks.add(link); myLinks.add(link);
link = Reflection.invoke(nextLink, page); link = Reflection.invoke(nextLink, page);
} }
assertIterableEquals(Arrays.asList(correctLinks.split("\n")), myLinks); assertIterableEquals(Arrays.asList(correctLinks.replace("\r\n", "\n").split("\n")), myLinks);
} }
@Order(7) @Order(7)
......
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