summaryrefslogtreecommitdiff
path: root/ext/soap
diff options
context:
space:
mode:
authorNikita Popov <nikita.ppv@gmail.com>2019-05-22 11:41:51 +0200
committerNikita Popov <nikita.ppv@gmail.com>2019-05-22 11:41:51 +0200
commit3a0de243c389af40c703e0ef018d8f95f6eab563 (patch)
treec9f94afe727d7c66217e09dea80fe9af815c9fb3 /ext/soap
parent7b42cdf95ee91b723e7df51ac96f880de51f4591 (diff)
downloadphp-git-3a0de243c389af40c703e0ef018d8f95f6eab563.tar.gz
Use a different URL in bug44811.phpt
Diffstat (limited to 'ext/soap')
-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