Looser check for 403 and 503 errors in URL caching test

This commit is contained in:
Antonin Delpeuch 2018-01-03 18:57:34 +01:00
parent f14543bfca
commit 32b7d2fa74

View File

@ -169,7 +169,7 @@ public class UrlFetchingTests extends RefineTest {
// Inspect rows // Inspect rows
String ref_val = (String)project.rows.get(0).getCellValue(1).toString(); String ref_val = (String)project.rows.get(0).getCellValue(1).toString();
if (ref_val.startsWith("HTTP error 403") || ref_val.startsWith("HTTP error 503")) if (ref_val.contains("HTTP error 403") || ref_val.contains("HTTP error 503"))
return; return;
Assert.assertTrue(ref_val != "apple"); // just to make sure I picked the right column Assert.assertTrue(ref_val != "apple"); // just to make sure I picked the right column
for (int i = 1; i < 4; i++) { for (int i = 1; i < 4; i++) {