From f82c2ef0db79c66a337bbe12da20d52dba621df0 Mon Sep 17 00:00:00 2001 From: Protobuf Team Bot Date: Thu, 8 Feb 2024 15:08:56 -0800 Subject: [PATCH] Minor cleanup: whitelist --> allowlist PiperOrigin-RevId: 605439980 --- src/google/protobuf/util/field_mask_util_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/google/protobuf/util/field_mask_util_test.cc b/src/google/protobuf/util/field_mask_util_test.cc index 16b3bd2fab..79fe32c9df 100644 --- a/src/google/protobuf/util/field_mask_util_test.cc +++ b/src/google/protobuf/util/field_mask_util_test.cc @@ -777,7 +777,7 @@ TEST(FieldMaskUtilTest, TrimMessageReturnValue) { EXPECT_EQ(trimed_msg.DebugString(), default_msg.DebugString()); trimed_msg.Clear(); - // If there is no field set other then those whitelisted, + // If there is no field set other then those allowlisted, // FieldMaskUtil::TrimMessage() should return false. trimed_msg.set_optional_int32(123); EXPECT_FALSE(FieldMaskUtil::TrimMessage(mask, &trimed_msg));