Skip to content

Commit b048b4a

Browse files
authored
Fix: Operator (#696)
1 parent 1488881 commit b048b4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Faker/Provider/ImageTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ private static function checkUrlConnection(string $url): void
185185
$httpCode = curl_getinfo($curlPing, CURLINFO_HTTP_CODE);
186186
curl_close($curlPing);
187187

188-
if ($httpCode < 200 | $httpCode > 300) {
188+
if ($httpCode < 200 || $httpCode > 300) {
189189
self::markTestSkipped(sprintf('"%s" is offline, skipping test', $url));
190190
}
191191
}

0 commit comments

Comments
 (0)