From 6b7891d5f19fbd7f57f448fe4a7fbe5d3097ee4a Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Thu, 14 Jul 2016 17:54:06 -0700 Subject: [PATCH] integration: add FailFast(false) to failing tests --- integration/v3_grpc_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/integration/v3_grpc_test.go b/integration/v3_grpc_test.go index 92306e4c5..d7dd4aa60 100644 --- a/integration/v3_grpc_test.go +++ b/integration/v3_grpc_test.go @@ -572,7 +572,7 @@ func TestV3StorageQuotaAPI(t *testing.T) { // test small put that fits in quota smallbuf := make([]byte, 512) - if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: key, Value: smallbuf}); err != nil { + if _, err := kvc.Put(context.TODO(), &pb.PutRequest{Key: key, Value: smallbuf}, grpc.FailFast(false)); err != nil { t.Fatal(err) } @@ -619,7 +619,7 @@ func TestV3StorageQuotaApply(t *testing.T) { // test small put still works smallbuf := make([]byte, 1024) - _, serr := kvc0.Put(context.TODO(), &pb.PutRequest{Key: key, Value: smallbuf}) + _, serr := kvc0.Put(context.TODO(), &pb.PutRequest{Key: key, Value: smallbuf}, grpc.FailFast(false)) if serr != nil { t.Fatal(serr) }