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/strings | |
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/strings')
-rw-r--r-- | absl/strings/BUILD.bazel | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/absl/strings/BUILD.bazel b/absl/strings/BUILD.bazel index 1b6c7e4b..942c5324 100644 --- a/absl/strings/BUILD.bazel +++ b/absl/strings/BUILD.bazel @@ -829,7 +829,7 @@ cc_test( cc_library( name = "cord_test_helpers", - testonly = 1, + testonly = True, hdrs = [ "cord_test_helpers.h", ], @@ -845,7 +845,7 @@ cc_library( cc_library( name = "cord_rep_test_util", - testonly = 1, + testonly = True, hdrs = ["internal/cord_rep_test_util.h"], copts = ABSL_DEFAULT_COPTS, linkopts = ABSL_DEFAULT_LINKOPTS, @@ -859,7 +859,7 @@ cc_library( cc_library( name = "cordz_test_helpers", - testonly = 1, + testonly = True, hdrs = ["cordz_test_helpers.h"], copts = ABSL_DEFAULT_COPTS, linkopts = ABSL_DEFAULT_LINKOPTS, @@ -1449,7 +1449,7 @@ cc_test( cc_binary( name = "atod_manual_test", - testonly = 1, + testonly = True, srcs = ["atod_manual_test.cc"], copts = ABSL_TEST_COPTS, linkopts = ABSL_DEFAULT_LINKOPTS, |