fix more tests calls

This commit is contained in:
Lukas Woehrl
2016-12-19 19:35:29 +01:00
parent 9ea8e73dd5
commit a6bdf6abf1
3 changed files with 22 additions and 22 deletions

View File

@@ -43,8 +43,8 @@ TEST(YogaTest, measure_once_single_flexible_child) {
const YGNodeRef root = YGNodeNew();
YGNodeStyleSetFlexDirection(root, YGFlexDirectionRow);
YGNodeStyleSetAlignItems(root, YGAlignFlexStart);
YGNodeStyleSetWidth(root, 100);
YGNodeStyleSetHeight(root, 100);
YGNodeStyleSetWidth(root, YGPx(100));
YGNodeStyleSetHeight(root, YGPx(100));
const YGNodeRef root_child0 = YGNodeNew();
int measureCount = 0;