From 8dea884a69f3296a1ec1d272a6fdb71bdb41391a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20W=C3=B6hrl?= Date: Thu, 9 Mar 2017 03:34:59 -0800 Subject: [PATCH] Fix typo in test class to use same name as the others Summary: Fixes a typo in the test class to use the same name as the other tests. Closes https://github.com/facebook/yoga/pull/469 Differential Revision: D4681340 Pulled By: emilsjolander fbshipit-source-id: a5e60b5e2aa74dc25e677a5579bb853492708c16 --- tests/YGDirtyMarkingTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/YGDirtyMarkingTest.cpp b/tests/YGDirtyMarkingTest.cpp index 10c27d20..7b26f0fc 100644 --- a/tests/YGDirtyMarkingTest.cpp +++ b/tests/YGDirtyMarkingTest.cpp @@ -70,7 +70,7 @@ TEST(YogaTest, dirty_propagation_only_if_prop_changed) { YGNodeFreeRecursive(root); } -TEST(Yogatest, dirty_mark_all_children_as_dirty_when_display_changes){ +TEST(YogaTest, dirty_mark_all_children_as_dirty_when_display_changes){ const YGNodeRef root = YGNodeNew(); YGNodeStyleSetFlexDirection(root, YGFlexDirectionRow); YGNodeStyleSetHeight(root, 100);