You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Bug: Rule didn't always match when URL contained any of the following characters +()[]
- Added tests for the above characters
- Minor readability and code optimizations
Test improvements/fixes
- List of hosts randomized when searching for an test subject, returning an HTTP 500 status code (we don't want to prioritize)
- Mark MySQL tests as skipped (instead of failing) if unable to connect to the test database
Copy file name to clipboardExpand all lines: tests/HttpRetryAfterTest.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -50,7 +50,7 @@ public function testHttpRetryAfter()
50
50
}
51
51
}
52
52
if ($count === 0) {
53
-
$this->markTestSkipped("No URLs returned both `HTTP 503` and the `Retry-after` header. NB! Such circumstances are uncommon, and if the criteria is met, it's only a temporary state.");
53
+
$this->markTestIncomplete('None of the test urls returned both `HTTP 503` and the `Retry-after` header. Such circumstances are usually temporary and uncommon. Try updating the list of test subjects.');
0 commit comments