@@ -53,63 +53,63 @@ private function curlsAssert200OK(array $curls)
5353
5454 public function testSimple ()
5555 {
56- Co::wait ($ ch = $ this ->curlInitWith ('http://localhost:8080 /upload_form.php ' ));
56+ Co::wait ($ ch = $ this ->curlInitWith ('http://localhost:8000 /upload_form.php ' ));
5757 $ this ->curlAssert200OK ($ ch );
5858 }
5959
6060 public function testSimpleSecure ()
6161 {
62- Co::wait ($ ch = $ this ->curlInitWith ('https://localhost:8081 /upload_form.php ' ));
62+ Co::wait ($ ch = $ this ->curlInitWith ('https://localhost:44300 /upload_form.php ' ));
6363 $ this ->curlAssert200OK ($ ch );
6464 }
6565
6666 public function testDelayed ()
6767 {
68- Co::wait ($ ch = $ this ->curlInitWith ('http://localhost:8080 /fast_hello.php ' ));
68+ Co::wait ($ ch = $ this ->curlInitWith ('http://localhost:8000 /fast_hello.php ' ));
6969 $ this ->curlAssert200OK ($ ch );
7070 }
7171
7272 public function testDelayedSecure ()
7373 {
74- Co::wait ($ ch = $ this ->curlInitWith ('https://localhost:8081 /fast_hello.php ' ));
74+ Co::wait ($ ch = $ this ->curlInitWith ('https://localhost:44300 /fast_hello.php ' ));
7575 $ this ->curlAssert200OK ($ ch );
7676 }
7777
7878 public function testDelayedGroupSingle ()
7979 {
80- Co::wait ($ chs = $ this ->curlsInitWith (5 , 'http://localhost:8080 /fast_hello.php ' ));
80+ Co::wait ($ chs = $ this ->curlsInitWith (5 , 'http://localhost:8000 /fast_hello.php ' ));
8181 $ this ->curlsAssert200OK ($ chs );
8282 }
8383
8484 public function testDelayedGroupSingleSecure ()
8585 {
86- Co::wait ($ chs = $ this ->curlsInitWith (5 , 'https://localhost:8081 /fast_hello.php ' ));
86+ Co::wait ($ chs = $ this ->curlsInitWith (5 , 'https://localhost:44300 /fast_hello.php ' ));
8787 $ this ->curlsAssert200OK ($ chs );
8888 }
8989
9090 public function testDelayedGroupDouble ()
9191 {
92- Co::wait ($ chs = $ this ->curlsInitWith (10 , 'http://localhost:8080 /fast_hello.php ' ));
92+ Co::wait ($ chs = $ this ->curlsInitWith (10 , 'http://localhost:8000 /fast_hello.php ' ));
9393 $ this ->curlsAssert200OK ($ chs );
9494 }
9595
9696 public function testDelayedGroupDoubleSecure ()
9797 {
98- Co::wait ($ chs = $ this ->curlsInitWith (10 , 'https://localhost:8081 /fast_hello.php ' ));
98+ Co::wait ($ chs = $ this ->curlsInitWith (10 , 'https://localhost:44300 /fast_hello.php ' ));
9999 $ this ->curlsAssert200OK ($ chs );
100100 }
101101
102102 public function testDelayedGroupDoubleAtOnce ()
103103 {
104- Co::wait ($ chs = $ this ->curlsInitWith (10 , 'http://localhost:8080 /fast_hello.php ' ), [
104+ Co::wait ($ chs = $ this ->curlsInitWith (10 , 'http://localhost:8000 /fast_hello.php ' ), [
105105 'concurrency ' => 0 ,
106106 ]);
107107 $ this ->curlsAssert200OK ($ chs );
108108 }
109109
110110 public function testDelayedGroupDoubleAtOnceSecure ()
111111 {
112- Co::wait ($ chs = $ this ->curlsInitWith (10 , 'https://localhost:8081 /fast_hello.php ' ), [
112+ Co::wait ($ chs = $ this ->curlsInitWith (10 , 'https://localhost:44300 /fast_hello.php ' ), [
113113 'concurrency ' => 0 ,
114114 ]);
115115 $ this ->curlsAssert200OK ($ chs );
0 commit comments