| Index: ui/message_center/cocoa/notification_controller_unittest.mm
|
| diff --git a/ui/message_center/cocoa/notification_controller_unittest.mm b/ui/message_center/cocoa/notification_controller_unittest.mm
|
| index 8ba6026782d5a305504e625d3a5b4ae809e02995..b00685045a64a9c307935f7fea55bd4d7116cbe1 100644
|
| --- a/ui/message_center/cocoa/notification_controller_unittest.mm
|
| +++ b/ui/message_center/cocoa/notification_controller_unittest.mm
|
| @@ -262,9 +262,10 @@ TEST_F(NotificationControllerTest, Image) {
|
| [controller view];
|
|
|
| ASSERT_EQ(1u, [[controller bottomSubviews] count]);
|
| - ASSERT_TRUE([[[controller bottomSubviews] lastObject]
|
| + ASSERT_TRUE([[[[controller bottomSubviews] lastObject] contentView]
|
| isKindOfClass:[NSImageView class]]);
|
| - EXPECT_EQ(image, [[[controller bottomSubviews] lastObject] image]);
|
| + EXPECT_EQ(image,
|
| + [[[[controller bottomSubviews] lastObject] contentView] image]);
|
| }
|
|
|
| TEST_F(NotificationControllerTest, List) {
|
|
|