From 3e49e6a44c115e7a6cf6158fa968ff78b9e4f46f Mon Sep 17 00:00:00 2001 From: CEL Dev Team Date: Tue, 19 May 2026 01:03:12 -0700 Subject: [PATCH] No public description PiperOrigin-RevId: 917672562 --- internal/message_equality_test.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/message_equality_test.cc b/internal/message_equality_test.cc index 318138d9b..ce3a5bd82 100644 --- a/internal/message_equality_test.cc +++ b/internal/message_equality_test.cc @@ -394,8 +394,8 @@ void PackMessageTo(const google::protobuf::Message& message, google::protobuf::M reflection.SetValue(instance, value); } -absl::optional, - const google::protobuf::FieldDescriptor* absl_nonnull>> +std::optional< + std::pair, const google::protobuf::FieldDescriptor* _Nonnull>> PackTestAllTypesProto3Field(const google::protobuf::Message& message, const google::protobuf::FieldDescriptor* absl_nonnull field) { if (field->is_map()) { @@ -499,11 +499,11 @@ TEST_P(UnaryMessageFieldEqualsTest, Equals) { << rhs_field->name(); } // Test `google.protobuf.Any`. - absl::optional, - const google::protobuf::FieldDescriptor* absl_nonnull>> + std::optional, + const google::protobuf::FieldDescriptor* _Nonnull>> lhs_any = PackTestAllTypesProto3Field(*lhs_message, lhs_field); - absl::optional, - const google::protobuf::FieldDescriptor* absl_nonnull>> + std::optional, + const google::protobuf::FieldDescriptor* _Nonnull>> rhs_any = PackTestAllTypesProto3Field(*rhs_message, rhs_field); if (lhs_any) { EXPECT_THAT(MessageFieldEquals(*lhs_any->first, lhs_any->second,