fix: change httpbin.org from http to https

This commit is contained in:
lilong.129
2023-04-18 20:20:36 +08:00
parent 6c89236941
commit a6baeb1dd6
8 changed files with 19 additions and 17 deletions
+1 -1
View File
@@ -24,7 +24,7 @@ func TestLoadCurlCase(t *testing.T) {
if !assert.EqualValues(t, "GET", tCase.TestSteps[0].Request.Method) {
t.Fatal()
}
if !assert.Equal(t, "http://httpbin.org", tCase.TestSteps[0].Request.URL) {
if !assert.Equal(t, "https://httpbin.org", tCase.TestSteps[0].Request.URL) {
t.Fatal()
}