diff --git a/example_test.go b/example_test.go index 42c0190..bcda8f3 100644 --- a/example_test.go +++ b/example_test.go @@ -13,8 +13,8 @@ import ( "golang.org/x/net/context" "golang.org/x/net/websocket" - grpchello "github.com/grpc/grpc-go/examples/helloworld/helloworld" "github.com/soheilhy/cmux" + grpchello "google.golang.org/grpc/examples/helloworld/helloworld" ) type exampleHTTPHandler struct{} diff --git a/matchers.go b/matchers.go index 33a0667..93913f1 100644 --- a/matchers.go +++ b/matchers.go @@ -8,8 +8,8 @@ import ( "net/http" "strings" - "github.com/bradfitz/http2" - "github.com/bradfitz/http2/hpack" + "golang.org/x/net/http2" + "golang.org/x/net/http2/hpack" ) // Any is a Matcher that matches any connection.