aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/core/test
diff options
context:
space:
mode:
authorGravatar rsgowman <rgowman@google.com>2018-02-21 17:51:44 -0500
committerGravatar Gil <mcg@google.com>2018-02-21 14:51:44 -0800
commit41dcd4bd17708779b45982d9547215924f2e5fd5 (patch)
tree78d9036ac6cb36805e38a76a1480aea96d3bb761 /Firestore/core/test
parent50f9df9240007fa8bb336d7b7867919d67f3030b (diff)
Fix trivial mem leak in the test suite (#828)
Reduces noise while running valgrind so that I can see the leaks that I'm introducing. :/
Diffstat (limited to 'Firestore/core/test')
-rw-r--r--Firestore/core/test/firebase/firestore/remote/datastore_test.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/Firestore/core/test/firebase/firestore/remote/datastore_test.cc b/Firestore/core/test/firebase/firestore/remote/datastore_test.cc
index 46a19cc..42a9a8c 100644
--- a/Firestore/core/test/firebase/firestore/remote/datastore_test.cc
+++ b/Firestore/core/test/firebase/firestore/remote/datastore_test.cc
@@ -25,4 +25,5 @@ TEST(Datastore, CanLinkToGrpc) {
// libraries required for gRPC to work are actually linked correctly into the
// test.
grpc_init();
+ grpc_shutdown();
}