| Index: server/logdog/storage/bigtable/bigtable_test.go
|
| diff --git a/server/logdog/storage/bigtable/bigtable_test.go b/server/logdog/storage/bigtable/bigtable_test.go
|
| index 89b50efc630af05b4bed2fb41ab1369dfe06cc41..71b50668aa35eceb514adf0980a3ba56206c3195 100644
|
| --- a/server/logdog/storage/bigtable/bigtable_test.go
|
| +++ b/server/logdog/storage/bigtable/bigtable_test.go
|
| @@ -9,7 +9,6 @@ import (
|
| "time"
|
|
|
| "github.com/luci/luci-go/common/errors"
|
| - "github.com/luci/luci-go/common/grpcutil"
|
| "github.com/luci/luci-go/server/logdog/storage"
|
| "golang.org/x/net/context"
|
| "google.golang.org/cloud/bigtable"
|
| @@ -85,21 +84,3 @@ func TestBigTable(t *testing.T) {
|
| })
|
| })
|
| }
|
| -
|
| -func TestBigTableErrors(t *testing.T) {
|
| - t.Parallel()
|
| -
|
| - Convey(`A nil error is not marked transient.`, t, func() {
|
| - So(wrapTransient(nil), ShouldBeNil)
|
| - })
|
| -
|
| - Convey(`A regular error is not marked transient.`, t, func() {
|
| - So(grpcutil.IsTransient(grpcutil.Canceled), ShouldBeFalse)
|
| - So(errors.IsTransient(wrapTransient(grpcutil.Canceled)), ShouldBeFalse)
|
| - })
|
| -
|
| - Convey(`An gRPC transient error is marked transient.`, t, func() {
|
| - So(grpcutil.IsTransient(grpcutil.Internal), ShouldBeTrue)
|
| - So(errors.IsTransient(wrapTransient(grpcutil.Internal)), ShouldBeTrue)
|
| - })
|
| -}
|
|
|