Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Unified Diff: third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp

Issue 2709033003: Migrate WTF::HashMap::get() to ::at() (Closed)
Patch Set: rebase Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp
diff --git a/third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp b/third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp
index 8c824b4bed2fb61c9e212174f10ba4ad66fe15f9..deae629a66a882ebe2ac0a0c04e14f2ba3685e1d 100644
--- a/third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp
+++ b/third_party/WebKit/Source/modules/notifications/NotificationDataTest.cpp
@@ -268,7 +268,7 @@ TEST_F(NotificationDataTest, DirectionValues) {
getExecutionContext(), kNotificationTitle, options, exceptionState);
ASSERT_FALSE(exceptionState.hadException());
- EXPECT_EQ(mappings.get(direction), notificationData.direction);
+ EXPECT_EQ(mappings.at(direction), notificationData.direction);
}
}

Powered by Google App Engine
This is Rietveld 408576698