aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/backoff/BUILD
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2017-11-29 13:33:39 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2017-11-29 13:33:39 -0800
commit2258cd7ddc50b84d1c5589be99fad2c4278707b9 (patch)
tree26363a7f61e7f99544aa3fac49f0df9f2fdd42dc /test/core/backoff/BUILD
parentd3f6eae6694189bc9547acc6a95f9c94add4508b (diff)
Converted backoff_test to use gunit
Diffstat (limited to 'test/core/backoff/BUILD')
-rw-r--r--test/core/backoff/BUILD7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/core/backoff/BUILD b/test/core/backoff/BUILD
index 4cd7acf066..6fbd6542d4 100644
--- a/test/core/backoff/BUILD
+++ b/test/core/backoff/BUILD
@@ -26,11 +26,14 @@ package(
grpc_cc_test(
name = "backoff_test",
srcs = ["backoff_test.cc"],
+ external_deps = [
+ "gtest",
+ ],
language = "C++",
deps = [
- "//:grpc",
- "//test/core/util:grpc_test_util",
"//:gpr",
+ "//:grpc",
"//test/core/util:gpr_test_util",
+ "//test/core/util:grpc_test_util",
],
)