Add gtest dependency to the test instead of library

pull/19360/head
Yash Tibrewal 6 years ago
parent 0bee8c41f9
commit 9f10ab5377
  1. 6
      test/core/bad_client/generate_tests.bzl

@ -42,9 +42,6 @@ def grpc_bad_client_tests():
name = 'bad_client_test',
srcs = ['bad_client.cc'],
hdrs = ['bad_client.h'],
external_deps = [
"gtest",
],
language = "C++",
deps = ['//test/core/util:grpc_test_util', '//:grpc', '//:gpr', '//test/core/end2end:cq_verifier']
)
@ -53,5 +50,8 @@ def grpc_bad_client_tests():
name = '%s_bad_client_test' % t,
srcs = ['tests/%s.cc' % t],
deps = [':bad_client_test'],
external_deps = [
"gtest",
],
)

Loading…
Cancel
Save