@@ -17,7 +17,7 @@ import (
1717 "google.golang.org/protobuf/types/known/emptypb"
1818)
1919
20- func testEchoImpl (t * testing.T , listener net.Listener , addr string ) {
20+ func testMinimalImpl (t * testing.T , listener net.Listener , addr string ) {
2121 pluginInfo := GetGotifyPluginInfo ()
2222
2323 client , err := transport .NewEphemeralTLSClient ()
@@ -109,18 +109,18 @@ func testEchoImpl(t *testing.T, listener net.Listener, addr string) {
109109 }
110110}
111111
112- func TestEcho (t * testing.T ) {
112+ func TestMinimal (t * testing.T ) {
113113 listener , addr , err := transport .NewListener ()
114114 if err != nil {
115115 t .Fatal (err )
116116 }
117- testEchoImpl (t , listener , addr )
117+ testMinimalImpl (t , listener , addr )
118118}
119119
120- func TestEchoTCP (t * testing.T ) {
120+ func TestMinimalTCP (t * testing.T ) {
121121 listener , addr , err := transport .NewTCPListener ()
122122 if err != nil {
123123 t .Fatal (err )
124124 }
125- testEchoImpl (t , listener , addr )
125+ testMinimalImpl (t , listener , addr )
126126}
0 commit comments