Skip to content

Commit 9872ce8

Browse files
committed
Fix https tests
1 parent a071368 commit 9872ce8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/RequestExecutor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ public static function validateUrls($initialUrls, ?AuthOptions $authOptions): Ur
966966

967967
/** @var Url $url */
968968
foreach ($initialUrls as $url) {
969-
if (!$url->getScheme() == "http://") {
969+
if ($url->getScheme() != "http") {
970970
continue;
971971
}
972972

0 commit comments

Comments
 (0)