Index: Source/core/animation/KeyframeEffectModelTest.cpp |
diff --git a/Source/core/animation/KeyframeEffectModelTest.cpp b/Source/core/animation/KeyframeEffectModelTest.cpp |
index 5e7612a28f78fe5be9270e04450b191409cd085d..449a46d813c801c0cf424c2122796856833f90a3 100644 |
--- a/Source/core/animation/KeyframeEffectModelTest.cpp |
+++ b/Source/core/animation/KeyframeEffectModelTest.cpp |
@@ -81,7 +81,7 @@ void expectDoubleValue(double expectedValue, PassRefPtrWillBeRawPtr<Interpolatio |
if (value->isLength()) |
actualValue = toAnimatableLength(value.get())->length(1, ValueRangeAll).value(); |
else |
- actualValue = toCSSPrimitiveValue(toAnimatableUnknown(value.get())->toCSSValue()).getDoubleValue(); |
+ actualValue = toAnimatableUnknown(value.get())->toCSSValue().getDoubleValue(); |
EXPECT_FLOAT_EQ(static_cast<float>(expectedValue), actualValue); |
} |