summaryrefslogtreecommitdiff
path: root/absl/log/check_test.cc
diff options
context:
space:
mode:
authorGravatar Andy Getzendanner <durandal@google.com>2022-11-28 15:14:27 -0800
committerGravatar Copybara-Service <copybara-worker@google.com>2022-11-28 15:15:24 -0800
commit13708db87b1ab69f4f2b3214f3f51e986546f282 (patch)
tree9fc8df2738e52ed2f1b23d5438bccfba80114957 /absl/log/check_test.cc
parent558a0e466c6328b835eeba81e77f2a88a6a90f3c (diff)
Write (more) directly into the structured buffer from StringifySink, including for (size_t, char) overload.
PiperOrigin-RevId: 491456410 Change-Id: I76dec24b0bd02204fa38419af9247cee38b1cf50
Diffstat (limited to 'absl/log/check_test.cc')
-rw-r--r--absl/log/check_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/log/check_test.cc b/absl/log/check_test.cc
index 4ce9d872..755adb3a 100644
--- a/absl/log/check_test.cc
+++ b/absl/log/check_test.cc
@@ -93,7 +93,7 @@ TEST(CHECKTest, TestBoolConvertible) {
#if GTEST_HAS_DEATH_TEST
-TEST(CHECKDeathTest, TestChecksWithSideeffects) {
+TEST(CHECKDeathTest, TestChecksWithSideEffects) {
int var = 0;
CHECK([&var]() {
++var;