Index: third_party/WebKit/Source/core/animation/InterpolableValueTest.cpp |
diff --git a/third_party/WebKit/Source/core/animation/InterpolableValueTest.cpp b/third_party/WebKit/Source/core/animation/InterpolableValueTest.cpp |
index 2750dc2b299cc73009a3c8fcc489497ad12421ee..9d2a49a836173831d2b926d386f34c57bee0227b 100644 |
--- a/third_party/WebKit/Source/core/animation/InterpolableValueTest.cpp |
+++ b/third_party/WebKit/Source/core/animation/InterpolableValueTest.cpp |
@@ -109,8 +109,9 @@ TEST_F(AnimationInterpolableValueTest, NestedList) { |
InterpolableList* outList = toInterpolableList(interpolationValue(*i.get())); |
EXPECT_FLOAT_EQ(50, toInterpolableNumber(outList->get(0))->value()); |
EXPECT_FLOAT_EQ( |
- 75, toInterpolableNumber(toInterpolableList(outList->get(1))->get(0)) |
- ->value()); |
+ 75, |
+ toInterpolableNumber(toInterpolableList(outList->get(1))->get(0)) |
+ ->value()); |
EXPECT_FLOAT_EQ(0.5, toInterpolableNumber(outList->get(2))->value()); |
} |