Fixup UTs for MSVC and Release Mode
Summary: This fixes incompatibility with MSVC in /W3 (designated initializers, precision loss) along with guarding tests which will only pass in DEBUG builds Reviewed By: cortinico Differential Revision: D42406531 fbshipit-source-id: 2c0d59678f76decf9b9b4d91a7c9ec12136ca1b9
This commit is contained in:
committed by
Facebook GitHub Bot
parent
9808358e08
commit
83cef5b12f
@@ -48,7 +48,7 @@ TEST(YGNode, measure_with_context_measure_fn) {
|
||||
return *(YGSize*) ctx;
|
||||
});
|
||||
|
||||
auto result = YGSize{123.4, -56.7};
|
||||
auto result = YGSize{123.4f, -56.7f};
|
||||
ASSERT_EQ(
|
||||
n.measure(0, YGMeasureModeUndefined, 0, YGMeasureModeUndefined, &result),
|
||||
result);
|
||||
|
Reference in New Issue
Block a user