@@ -82,12 +82,12 @@ def test_simple_get_google(self):
8282 run_command (simple_get_args )
8383 def test_simple_get_h1 (self ):
8484 """make a simple GET request via HTTP/1.1 and make sure it succeeds"""
85- simple_get_args = elasticurl_cmd_prefix + ['-v' , 'TRACE' , '--http1_1' , 'http://httpbin.org /get' ]
85+ simple_get_args = elasticurl_cmd_prefix + ['-v' , 'TRACE' , '--http1_1' , 'http://postman-echo.com /get' ]
8686 run_command (simple_get_args )
8787
8888 def test_simple_post_h1 (self ):
8989 """make a simple POST request via HTTP/1.1 to make sure sending data succeeds"""
90- simple_post_args = elasticurl_cmd_prefix + ['-v' , 'TRACE' , '--http1_1' , '-P' , '-H' , 'content-type: application/json' , '-i' , '-d' , '\" {\' test\' :\' testval\' }\" ' , 'http://httpbin.org /post' ]
90+ simple_post_args = elasticurl_cmd_prefix + ['-v' , 'TRACE' , '--http1_1' , '-P' , '-H' , 'content-type: application/json' , '-i' , '-d' , '\" {\' test\' :\' testval\' }\" ' , 'http://postman-echo.com /post' ]
9191 run_command (simple_post_args )
9292
9393 def test_simple_download_h1 (self ):
@@ -100,12 +100,12 @@ def test_simple_download_h1(self):
100100
101101 def test_simple_get_h2 (self ):
102102 """make a simple GET request via HTTP2 and make sure it succeeds"""
103- simple_get_args = elasticurl_cmd_prefix + ['-v' , 'TRACE' , '--http2' , 'https://httpbin.org /get' ]
103+ simple_get_args = elasticurl_cmd_prefix + ['-v' , 'TRACE' , '--http2' , 'https://postman-echo.com /get' ]
104104 run_command (simple_get_args )
105105
106106 def test_simple_post_h2 (self ):
107107 """make a simple POST request via HTTP2 to make sure sending data succeeds"""
108- simple_post_args = elasticurl_cmd_prefix + ['-v' , 'TRACE' , '--http2' , '-P' , '-H' , 'content-type: application/json' , '-i' , '-d' , '\" {\' test\' :\' testval\' }\" ' , 'https://httpbin.org /post' ]
108+ simple_post_args = elasticurl_cmd_prefix + ['-v' , 'TRACE' , '--http2' , '-P' , '-H' , 'content-type: application/json' , '-i' , '-d' , '\" {\' test\' :\' testval\' }\" ' , 'https://postman-echo.com /post' ]
109109 run_command (simple_post_args )
110110
111111 def test_simple_download_h2 (self ):
0 commit comments