Index: third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc |
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc |
index 06f038681ee59fafcf793579b9b692d613382b66..eab90a52caced537c6467dc1cea764f260a57d62 100644 |
--- a/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc |
+++ b/third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc |
@@ -160,7 +160,7 @@ TEST_F(NGBlockLayoutAlgorithmTest, CollapsingMarginsCase1) { |
space->SetIsNewFormattingContext(true); |
NGPhysicalFragment* frag = RunBlockLayoutAlgorithm(space, div1); |
- EXPECT_EQ(NGMarginStrut({LayoutUnit(kDiv1MarginTop)}), frag->MarginStrut()); |
+ EXPECT_EQ(NGMarginStrut({LayoutUnit()}), frag->MarginStrut()); |
ASSERT_EQ(frag->Children().size(), 1UL); |
const NGPhysicalFragmentBase* div2_fragment = frag->Children()[0]; |
EXPECT_EQ(NGMarginStrut({LayoutUnit(kDiv2MarginTop)}), |