Skip to content

Commit

Permalink
GH-518 Fix IOUtils unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Jul 2, 2020
1 parent a0e5b95 commit e02c5d9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class IOUtilsTest {
void getURLContent() {
String urlContent = IOUtils.getURLContent("https://panda-lang.org/");
Assertions.assertNotNull(urlContent);
Assertions.assertTrue(urlContent.contains("<html>"));
Assertions.assertTrue(urlContent.contains("<html"));
}

@Test
Expand Down

0 comments on commit e02c5d9

Please sign in to comment.