aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/transport/chttp2
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-12-02 17:11:49 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-12-02 17:11:49 -0800
commite62bf9844ce63b3075641e6a08f06dcaa627f8ed (patch)
treefc234b324c40e742907db2739b3817314a966068 /test/core/transport/chttp2
parent025bb9fa404b4acec11359eef5e2c08dea6948c8 (diff)
Fix HPACK encoder test
Diffstat (limited to 'test/core/transport/chttp2')
-rw-r--r--test/core/transport/chttp2/hpack_encoder_test.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/core/transport/chttp2/hpack_encoder_test.c b/test/core/transport/chttp2/hpack_encoder_test.c
index 64ea1e3f14..4a9d143640 100644
--- a/test/core/transport/chttp2/hpack_encoder_test.c
+++ b/test/core/transport/chttp2/hpack_encoder_test.c
@@ -37,6 +37,7 @@
#include "src/core/support/string.h"
#include "src/core/transport/chttp2/hpack_parser.h"
+#include "src/core/transport/metadata.h"
#include <grpc/support/alloc.h>
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
@@ -187,6 +188,7 @@ static void run_test(void (*test)(), const char *name) {
int main(int argc, char **argv) {
size_t i;
+ grpc_test_only_set_metadata_hash_seed(0);
grpc_test_init(argc, argv);
grpc_init();
TEST(test_basic_headers);