1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-03-17 21:07:54 +02:00

fix: remove duplicate test codes. (#3187)

This commit is contained in:
kvii 2024-03-15 11:12:23 +08:00 committed by GitHub
parent 6286cdc947
commit 63344c3c97
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -33,12 +33,6 @@ func TestEncodeURL(t *testing.T) {
needQuery: false,
want: "http://helloworld.Greeter/helloworld/{}/sub/hello",
},
{
pathTemplate: "http://helloworld.Greeter/helloworld/{}/sub/{sub.naming}",
request: &binding.HelloRequest{Name: "test", Sub: &binding.Sub{Name: "hello"}},
needQuery: false,
want: "http://helloworld.Greeter/helloworld/{}/sub/hello",
},
{
pathTemplate: "http://helloworld.Greeter/helloworld/{}/sub/{sub.name.cc}",
request: &binding.HelloRequest{Name: "test", Sub: &binding.Sub{Name: "hello"}},
@ -69,12 +63,6 @@ func TestEncodeURL(t *testing.T) {
needQuery: false,
want: "http://helloworld.Greeter/helloworld/test/sub/",
},
{
pathTemplate: "http://helloworld.Greeter/helloworld/{name}/sub/{sub.name}",
request: &binding.HelloRequest{Name: "test"},
needQuery: false,
want: "http://helloworld.Greeter/helloworld/test/sub/",
},
{
pathTemplate: "http://helloworld.Greeter/helloworld/{name}/sub",
request: &binding.HelloRequest{Name: "go", Sub: &binding.Sub{Name: "kratos"}},