diff options
author | Shahriar Rouf <nafi@google.com> | 2024-01-31 10:07:48 -0800 |
---|---|---|
committer | Copybara-Service <copybara-worker@google.com> | 2024-01-31 10:08:35 -0800 |
commit | 780bfc194d807dbd56363635ca40bf96743aa00b (patch) | |
tree | c861b75b3883bbff023fca4f96d944c735ccbb52 /absl/hash | |
parent | 2812af9184eaa2bfd18d1545c57bcf8cbee88a9d (diff) | |
download | abseil-780bfc194d807dbd56363635ca40bf96743aa00b.tar.gz abseil-780bfc194d807dbd56363635ca40bf96743aa00b.tar.bz2 abseil-780bfc194d807dbd56363635ca40bf96743aa00b.zip |
Replace `testonly = 1` with `testonly = True` in abseil BUILD files.
https://bazel.build/build/style-guide#other-conventions
PiperOrigin-RevId: 603084345
Change-Id: Ibd7c9573d820f88059d12c46ff82d7d322d002ae
Diffstat (limited to 'absl/hash')
-rw-r--r-- | absl/hash/BUILD.bazel | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/absl/hash/BUILD.bazel b/absl/hash/BUILD.bazel index 1e8ad451..fe567e91 100644 --- a/absl/hash/BUILD.bazel +++ b/absl/hash/BUILD.bazel @@ -61,7 +61,7 @@ cc_library( cc_library( name = "hash_testing", - testonly = 1, + testonly = True, hdrs = ["hash_testing.h"], linkopts = ABSL_DEFAULT_LINKOPTS, deps = [ @@ -128,7 +128,7 @@ cc_test( cc_binary( name = "hash_benchmark", - testonly = 1, + testonly = True, srcs = ["hash_benchmark.cc"], copts = ABSL_TEST_COPTS, linkopts = ABSL_DEFAULT_LINKOPTS, @@ -148,7 +148,7 @@ cc_binary( cc_library( name = "spy_hash_state", - testonly = 1, + testonly = True, hdrs = ["internal/spy_hash_state.h"], copts = ABSL_DEFAULT_COPTS, linkopts = ABSL_DEFAULT_LINKOPTS, |