diff options
author | Vijay Pai <vpai@google.com> | 2018-09-19 11:29:11 -0700 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2018-09-19 11:29:11 -0700 |
commit | deb3126611a513b768052d93a976832985640d9f (patch) | |
tree | 4173a2ca0c69def52b9f93e3fba3838e40a11940 /test/cpp | |
parent | d177c8fe46c2550133199f71714c23ff0df8d38a (diff) |
Fix clang-tidy concerns
Diffstat (limited to 'test/cpp')
-rw-r--r-- | test/cpp/end2end/client_callback_end2end_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/cpp/end2end/client_callback_end2end_test.cc b/test/cpp/end2end/client_callback_end2end_test.cc index 3b492090dd..d8cb44b694 100644 --- a/test/cpp/end2end/client_callback_end2end_test.cc +++ b/test/cpp/end2end/client_callback_end2end_test.cc @@ -95,6 +95,8 @@ class ClientCallbackEnd2endTest : public ::testing::Test { if (maybe_except) { throw - 1; } +#else + GPR_ASSERT(!maybe_except); #endif }); std::unique_lock<std::mutex> l(mu); |