1 parent 4f753fb commit 58f1035Copy full SHA for 58f1035
1 file changed
src/test/java/com/github/underscore/LodashTest.java
@@ -742,7 +742,15 @@ void fetchPut() {
742
+ " \"fireBreath\": 10"
743
+ " }"
744
+ "}");
745
- assertTrue(resultChain.item().length() >= 0);
+ assertEquals(
746
+ "<html>\n"
747
+ + "<head><title>301 Moved Permanently</title></head>\n"
748
+ + "<body>\n"
749
+ + "<center><h1>301 Moved Permanently</h1></center>\n"
750
+ + "<hr><center>cloudflare</center>\n"
751
+ + "</body>\n"
752
+ + "</html>\n",
753
+ resultChain.item().replace("\r\n", "\n"));
754
}
755
756
@Test
0 commit comments