summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/soap/tests/bugs/bug44811.phpt4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/soap/tests/bugs/bug44811.phpt b/ext/soap/tests/bugs/bug44811.phpt
index 1c7605f610..08e0604100 100644
--- a/ext/soap/tests/bugs/bug44811.phpt
+++ b/ext/soap/tests/bugs/bug44811.phpt
@@ -8,13 +8,13 @@ soap.wsdl_cache_enabled=0
--FILE--
<?php
try {
- $x = new SoapClient('http://slashdot.org');
+ $x = new SoapClient('https://php.net');
} catch (SoapFault $e) {
echo $e->getMessage() . PHP_EOL;
}
die('ok');
?>
--EXPECTF--
-SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://slashdot.org' : %s
+SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://php.net' : %s
ok