aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end
diff options
context:
space:
mode:
authorGravatar Yash Tibrewal <yashkt@google.com>2018-10-05 14:56:18 -0700
committerGravatar GitHub <noreply@github.com>2018-10-05 14:56:18 -0700
commit3b26fe7262a9db90dfb69f84ad582d9f71871a5c (patch)
tree42dce7f0151cba7cda00255a0f5aa98240f17e8b /test/core/end2end
parent10dc690092082b89520365a94a8e500b2b4d9064 (diff)
parentdb0e30d6b2dcf9ecc6aeab6a97f49006928944f1 (diff)
Merge pull request #16764 from yashykt/keepaliv_status
Keepalive watchdog firing should return status UNAVAILABLE
Diffstat (limited to 'test/core/end2end')
-rw-r--r--test/core/end2end/tests/keepalive_timeout.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/end2end/tests/keepalive_timeout.cc b/test/core/end2end/tests/keepalive_timeout.cc
index 1ee5285027..5f6a36dac4 100644
--- a/test/core/end2end/tests/keepalive_timeout.cc
+++ b/test/core/end2end/tests/keepalive_timeout.cc
@@ -195,7 +195,7 @@ static void test_keepalive_timeout(grpc_end2end_test_config config) {
char* details_str = grpc_slice_to_c_string(details);
char* method_str = grpc_slice_to_c_string(call_details.method);
- GPR_ASSERT(status == GRPC_STATUS_INTERNAL);
+ GPR_ASSERT(status == GRPC_STATUS_UNAVAILABLE);
GPR_ASSERT(0 == grpc_slice_str_cmp(details, "keepalive watchdog timeout"));
GPR_ASSERT(0 == grpc_slice_str_cmp(call_details.method, "/foo"));