Remove unused types

This commit is contained in:
Jose Garcia 2022-03-14 10:34:52 -04:00
parent ed376f3691
commit bc80675b6f
2 changed files with 0 additions and 10 deletions

View file

@ -182,11 +182,6 @@ func runUpdateVisibilityTest(t *testing.T, portVisibilities []portVisibility, ev
return fmt.Errorf("unable to create test server: %w", err)
}
type rpcMessage struct {
Method string
Params liveshare.PortUpdate
}
go func() {
var i int
for ; ; i++ {

View file

@ -49,11 +49,6 @@ func makeMockSession(opts ...livesharetest.ServerOption) (*livesharetest.Server,
return testServer, session, nil
}
type rpcPortTestMessage struct {
Method string
Params PortUpdate
}
func TestServerStartSharing(t *testing.T) {
serverPort, serverProtocol := 2222, "sshd"
sendNotification := make(chan portUpdateNotification)