aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/slice
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-10-26 17:08:26 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-10-26 17:08:26 -0700
commita73537e4900b1cc8a01a38e060181fac941ed01b (patch)
tree903f8522c1f2e9e4c1a5a0ce75406665e42b289b /test/core/slice
parent7a34e48e5dc16644a2ca070dc2a52c76712af18e (diff)
Add incldues
Diffstat (limited to 'test/core/slice')
-rw-r--r--test/core/slice/percent_encoding_test.c5
-rw-r--r--test/core/slice/slice_string_helpers_test.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/test/core/slice/percent_encoding_test.c b/test/core/slice/percent_encoding_test.c
index fc8d131cc0..4f5cd2a65c 100644
--- a/test/core/slice/percent_encoding_test.c
+++ b/test/core/slice/percent_encoding_test.c
@@ -31,11 +31,12 @@
*
*/
-#include "src/core/lib/support/percent_encoding.h"
+#include "src/core/lib/slice/percent_encoding.h"
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
+#include "src/core/lib/slice/slice_string_helpers.h"
#include "src/core/lib/support/string.h"
#include "test/core/util/test_config.h"
@@ -123,7 +124,7 @@ static void test_nonconformant_vector(const char *encoded,
gpr_free(encoded2raw_permissive_msg);
GPR_ASSERT(0 == grpc_slice_cmp(permissive_unencoded_slice,
- encoded2raw_permissive_slice));
+ encoded2raw_permissive_slice));
grpc_slice_unref(permissive_unencoded_slice);
grpc_slice_unref(encoded2raw_permissive_slice);
diff --git a/test/core/slice/slice_string_helpers_test.c b/test/core/slice/slice_string_helpers_test.c
index caa87ed755..6d6b55ab45 100644
--- a/test/core/slice/slice_string_helpers_test.c
+++ b/test/core/slice/slice_string_helpers_test.c
@@ -31,7 +31,7 @@
*
*/
-#include "src/core/lib/support/string.h"
+#include "src/core/lib/slice/slice_string_helpers.h"
#include <limits.h>
#include <stddef.h>
@@ -42,6 +42,8 @@
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
#include <grpc/support/useful.h>
+
+#include "src/core/lib/support/string.h"
#include "test/core/util/test_config.h"
#define LOG_TEST_NAME(x) gpr_log(GPR_INFO, "%s", x)