|
49 | 49 |
|
50 | 50 | TEST(CSSLayoutTest, align_content_flex_start) { |
51 | 51 | const CSSNodeRef root = CSSNodeNew(); |
52 | | - CSSNodeStyleSetFlexWrap(root, CSSWrapTypeWrap); |
| 52 | + CSSNodeStyleSetFlexWrap(root, CSSWrapWrap); |
53 | 53 | CSSNodeStyleSetWidth(root, 100); |
54 | 54 | CSSNodeStyleSetHeight(root, 100); |
55 | 55 |
|
@@ -147,7 +147,7 @@ TEST(CSSLayoutTest, align_content_flex_start) { |
147 | 147 | TEST(CSSLayoutTest, align_content_flex_end) { |
148 | 148 | const CSSNodeRef root = CSSNodeNew(); |
149 | 149 | CSSNodeStyleSetAlignContent(root, CSSAlignFlexEnd); |
150 | | - CSSNodeStyleSetFlexWrap(root, CSSWrapTypeWrap); |
| 150 | + CSSNodeStyleSetFlexWrap(root, CSSWrapWrap); |
151 | 151 | CSSNodeStyleSetWidth(root, 100); |
152 | 152 | CSSNodeStyleSetHeight(root, 100); |
153 | 153 |
|
@@ -245,7 +245,7 @@ TEST(CSSLayoutTest, align_content_flex_end) { |
245 | 245 | TEST(CSSLayoutTest, align_content_center) { |
246 | 246 | const CSSNodeRef root = CSSNodeNew(); |
247 | 247 | CSSNodeStyleSetAlignContent(root, CSSAlignCenter); |
248 | | - CSSNodeStyleSetFlexWrap(root, CSSWrapTypeWrap); |
| 248 | + CSSNodeStyleSetFlexWrap(root, CSSWrapWrap); |
249 | 249 | CSSNodeStyleSetWidth(root, 100); |
250 | 250 | CSSNodeStyleSetHeight(root, 100); |
251 | 251 |
|
@@ -343,7 +343,7 @@ TEST(CSSLayoutTest, align_content_center) { |
343 | 343 | TEST(CSSLayoutTest, align_content_stretch) { |
344 | 344 | const CSSNodeRef root = CSSNodeNew(); |
345 | 345 | CSSNodeStyleSetAlignContent(root, CSSAlignStretch); |
346 | | - CSSNodeStyleSetFlexWrap(root, CSSWrapTypeWrap); |
| 346 | + CSSNodeStyleSetFlexWrap(root, CSSWrapWrap); |
347 | 347 | CSSNodeStyleSetWidth(root, 100); |
348 | 348 | CSSNodeStyleSetHeight(root, 100); |
349 | 349 |
|
|
0 commit comments