aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/stress_interop_client.cc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-11-11 14:32:55 -0800
committerGravatar Vijay Pai <vpai@google.com>2018-11-11 14:32:55 -0800
commita192fc68804ca86277ec4b62b9d0d5b53cd5fdd0 (patch)
treebda1741e1cda7b21ddf7578cb658a2007906b734 /test/cpp/interop/stress_interop_client.cc
parent6d0add97736b781acbf5a155229e14cb6200253e (diff)
Fix clang-tidy issues
Diffstat (limited to 'test/cpp/interop/stress_interop_client.cc')
-rw-r--r--test/cpp/interop/stress_interop_client.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/interop/stress_interop_client.cc b/test/cpp/interop/stress_interop_client.cc
index 7dc1956f78..5bbe913365 100644
--- a/test/cpp/interop/stress_interop_client.cc
+++ b/test/cpp/interop/stress_interop_client.cc
@@ -73,7 +73,7 @@ StressTestInteropClient::StressTestInteropClient(
long sleep_duration_ms, bool do_not_abort_on_transient_failures)
: test_id_(test_id),
server_address_(server_address),
- channel_creation_func_(channel_creation_func),
+ channel_creation_func_(std::move(channel_creation_func)),
interop_client_(new InteropClient(channel_creation_func_, false,
do_not_abort_on_transient_failures)),
test_selector_(test_selector),