@@ -480,7 +480,7 @@ TEST_F(CustomMapValueTest, Dispatcher_Find) {
480480 IsOkAndHolds (Optional (IntValueIs (1 ))));
481481 ASSERT_THAT (map.Find (StringValue (" baz" ), descriptor_pool (), message_factory (),
482482 arena ()),
483- IsOkAndHolds (Eq (absl ::nullopt )));
483+ IsOkAndHolds (Eq (std ::nullopt )));
484484}
485485
486486TEST_F (CustomMapValueTest, Interface_Find) {
@@ -493,7 +493,7 @@ TEST_F(CustomMapValueTest, Interface_Find) {
493493 IsOkAndHolds (Optional (IntValueIs (1 ))));
494494 ASSERT_THAT (map.Find (StringValue (" baz" ), descriptor_pool (), message_factory (),
495495 arena ()),
496- IsOkAndHolds (Eq (absl ::nullopt )));
496+ IsOkAndHolds (Eq (std ::nullopt )));
497497}
498498
499499TEST_F (CustomMapValueTest, Dispatcher_Has) {
@@ -588,7 +588,7 @@ TEST_F(CustomMapValueTest, Dispatcher_NewIterator1) {
588588 EXPECT_THAT (iterator->Next1 (descriptor_pool (), message_factory (), arena ()),
589589 IsOkAndHolds (Optional (StringValueIs (" bar" ))));
590590 EXPECT_THAT (iterator->Next1 (descriptor_pool (), message_factory (), arena ()),
591- IsOkAndHolds (Eq (absl ::nullopt )));
591+ IsOkAndHolds (Eq (std ::nullopt )));
592592}
593593
594594TEST_F (CustomMapValueTest, Interface_NewIterator1) {
@@ -599,7 +599,7 @@ TEST_F(CustomMapValueTest, Interface_NewIterator1) {
599599 EXPECT_THAT (iterator->Next1 (descriptor_pool (), message_factory (), arena ()),
600600 IsOkAndHolds (Optional (StringValueIs (" bar" ))));
601601 EXPECT_THAT (iterator->Next1 (descriptor_pool (), message_factory (), arena ()),
602- IsOkAndHolds (Eq (absl ::nullopt )));
602+ IsOkAndHolds (Eq (std ::nullopt )));
603603}
604604
605605TEST_F (CustomMapValueTest, Dispatcher_NewIterator2) {
@@ -612,7 +612,7 @@ TEST_F(CustomMapValueTest, Dispatcher_NewIterator2) {
612612 iterator->Next2 (descriptor_pool (), message_factory (), arena ()),
613613 IsOkAndHolds (Optional (Pair (StringValueIs (" bar" ), IntValueIs (1 )))));
614614 EXPECT_THAT (iterator->Next2 (descriptor_pool (), message_factory (), arena ()),
615- IsOkAndHolds (Eq (absl ::nullopt )));
615+ IsOkAndHolds (Eq (std ::nullopt )));
616616}
617617
618618TEST_F (CustomMapValueTest, Interface_NewIterator2) {
@@ -625,7 +625,7 @@ TEST_F(CustomMapValueTest, Interface_NewIterator2) {
625625 iterator->Next2 (descriptor_pool (), message_factory (), arena ()),
626626 IsOkAndHolds (Optional (Pair (StringValueIs (" bar" ), IntValueIs (1 )))));
627627 EXPECT_THAT (iterator->Next2 (descriptor_pool (), message_factory (), arena ()),
628- IsOkAndHolds (Eq (absl ::nullopt )));
628+ IsOkAndHolds (Eq (std ::nullopt )));
629629}
630630
631631TEST_F (CustomMapValueTest, Dispatcher) {
0 commit comments