aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/slice/percent_encoding_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/slice/percent_encoding_test.cc')
-rw-r--r--test/core/slice/percent_encoding_test.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/core/slice/percent_encoding_test.cc b/test/core/slice/percent_encoding_test.cc
index 11f3995f98..253240faad 100644
--- a/test/core/slice/percent_encoding_test.cc
+++ b/test/core/slice/percent_encoding_test.cc
@@ -18,7 +18,6 @@
#include "src/core/lib/slice/percent_encoding.h"
-#include <grpc/grpc.h>
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
@@ -119,7 +118,6 @@ static void test_nonconformant_vector(const char* encoded,
int main(int argc, char** argv) {
grpc_test_init(argc, argv);
- grpc_init();
TEST_VECTOR(
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.~",
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789-_.~",
@@ -142,6 +140,5 @@ int main(int argc, char** argv) {
grpc_url_percent_encoding_unreserved_bytes);
TEST_NONCONFORMANT_VECTOR("\0", "\0",
grpc_url_percent_encoding_unreserved_bytes);
- grpc_shutdown();
return 0;
}