Commit 6b08b41e authored by Abseil Team's avatar Abseil Team Committed by Derek Mauro
Browse files

Googletest export

Spell out namespace for absl::Notification.

PiperOrigin-RevId: 312300192
parent f3a59610
...@@ -2686,7 +2686,7 @@ TEST(EventQueueTest, EnqueueEventTest) { ...@@ -2686,7 +2686,7 @@ TEST(EventQueueTest, EnqueueEventTest) {
EventQueue event_queue(&mock_event_dispatcher); EventQueue event_queue(&mock_event_dispatcher);
const int32 kEventId = 321; const int32 kEventId = 321;
Notification done; absl::Notification done;
EXPECT_CALL(mock_event_dispatcher, DispatchEvent(kEventId)) EXPECT_CALL(mock_event_dispatcher, DispatchEvent(kEventId))
.WillOnce(Notify(&done)); .WillOnce(Notify(&done));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment