fix #1549: avoid duplicate creating plugins

This commit is contained in:
lilong.129
2023-04-18 21:43:30 +08:00
parent ebeae0c777
commit 1ffee4734e
2 changed files with 6 additions and 24 deletions

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, "https://httpbin.org", tCase.TestSteps[0].Request.URL) {
if !assert.Equal(t, "http://httpbin.org", tCase.TestSteps[0].Request.URL) {
t.Fatal()
}