diff options
| author | Nikita Popov <nikita.ppv@gmail.com> | 2019-05-22 11:43:40 +0200 |
|---|---|---|
| committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-05-22 11:43:40 +0200 |
| commit | ce8be6f499f4b0f1331fa6a80fdbab3ffb15ed70 (patch) | |
| tree | 83987eb9174bf0784395622f6b9bdc72ddb40464 | |
| parent | 7c99589be210eac023bf780263ed6ebcddf76a16 (diff) | |
| parent | 3a719696bca9a2bb2a4cd369434e9df8e8059786 (diff) | |
| download | php-git-ce8be6f499f4b0f1331fa6a80fdbab3ffb15ed70.tar.gz | |
Merge branch 'PHP-7.3' into PHP-7.4
| -rw-r--r-- | ext/soap/tests/bugs/bug44811.phpt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/soap/tests/bugs/bug44811.phpt b/ext/soap/tests/bugs/bug44811.phpt index 8cfc4a76cd..01953aa267 100644 --- a/ext/soap/tests/bugs/bug44811.phpt +++ b/ext/soap/tests/bugs/bug44811.phpt @@ -7,13 +7,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 |
