]> granicus.if.org Git - php/commitdiff
Removed irrelevant test
authorDmitry Stogov <dmitry@php.net>
Wed, 23 Sep 2009 14:15:52 +0000 (14:15 +0000)
committerDmitry Stogov <dmitry@php.net>
Wed, 23 Sep 2009 14:15:52 +0000 (14:15 +0000)
ext/soap/tests/bug46760.phpt [deleted file]

diff --git a/ext/soap/tests/bug46760.phpt b/ext/soap/tests/bug46760.phpt
deleted file mode 100644 (file)
index 0b7c9ab..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
---TEST--
-Bug #46760 (SoapClient doRequest fails when proxy is used)
---FILE--
-<?php
-
-$client = new SoapClient(null, array('proxy_host'     => "localhost",
-                                            'proxy_port'     => '8080',
-                                            'login'    => "user",
-                                                                               'password' => "test",
-                                                                                       'uri'            => 'mo:http://www.w3.org/',
-                                                                                       'location'       => 'http://some.url'));
-var_dump($client->_proxy_port);
-
-?>
---EXPECT--
-int(8080)