internal/impl: use current proto package, not old one

Correct a stray reference to github.com/golang/protobuf.

Updates golang/protobuf#962

Change-Id: I4a5f75d0aee61d28f18919a3ea728dc7a726da62
Reviewed-on: https://go-review.googlesource.com/c/protobuf/+/198998
Reviewed-by: Joe Tsai <thebrokentoaster@gmail.com>
This commit is contained in:
Damien Neil 2019-10-04 10:34:01 -07:00
parent 95d75b7143
commit 01fdc63239

View File

@ -8,9 +8,9 @@ import (
"fmt" "fmt"
"testing" "testing"
"github.com/golang/protobuf/proto"
cmp "github.com/google/go-cmp/cmp" cmp "github.com/google/go-cmp/cmp"
testpb "google.golang.org/protobuf/internal/testprotos/test" testpb "google.golang.org/protobuf/internal/testprotos/test"
"google.golang.org/protobuf/proto"
pref "google.golang.org/protobuf/reflect/protoreflect" pref "google.golang.org/protobuf/reflect/protoreflect"
) )