| Index: ash/wm/dock/docked_window_resizer_unittest.cc
|
| diff --git a/ash/wm/dock/docked_window_resizer_unittest.cc b/ash/wm/dock/docked_window_resizer_unittest.cc
|
| index 0e395d502f80f510e8640087689f1dec4ec1b33d..e765ca1722bb6a64ad60ef91fa50a27038eeaa95 100644
|
| --- a/ash/wm/dock/docked_window_resizer_unittest.cc
|
| +++ b/ash/wm/dock/docked_window_resizer_unittest.cc
|
| @@ -1212,10 +1212,10 @@ TEST_P(DockedWindowResizerTest, ResizeTwoWindows) {
|
| HTLEFT));
|
| DragMove(-kResizeSpan1, 0);
|
| DragEnd();
|
| - // Only w2 should get wider since w1 was resized by a user.
|
| + // w2 should get wider since it was resized by a user.
|
| EXPECT_EQ(previous_width + kResizeSpan1, w2->bounds().width());
|
| - // w1 should stays same size as before since it was resized by a user.
|
| - EXPECT_EQ(previous_width, w1->bounds().width());
|
| + // w1 should stay as wide as w2 since both were flush with the dock edge.
|
| + EXPECT_EQ(w2->bounds().width(), w1->bounds().width());
|
| EXPECT_EQ(w2->bounds().width(), docked_width(manager));
|
|
|
| // Undock w2 and then dock it back.
|
|
|