| Index: Source/core/animation/AnimatableStrokeDasharrayListTest.cpp
|
| diff --git a/Source/core/animation/AnimatableStrokeDasharrayListTest.cpp b/Source/core/animation/AnimatableStrokeDasharrayListTest.cpp
|
| index b688075c1bf8eabbe178f20c61153db5c5b6ff0e..878341ed3921c3b0507c9aac9f0002ae33cb0b25 100644
|
| --- a/Source/core/animation/AnimatableStrokeDasharrayListTest.cpp
|
| +++ b/Source/core/animation/AnimatableStrokeDasharrayListTest.cpp
|
| @@ -47,8 +47,8 @@ TEST(CoreAnimationAnimatableStrokeDasharrayListTest, EqualTo)
|
| RefPtr<AnimatableStrokeDasharrayList> listB = AnimatableStrokeDasharrayList::create(vectorB);
|
| EXPECT_TRUE(listA->equals(listB.get()));
|
|
|
| - TrackExceptionState es;
|
| - vectorB[3].newValueSpecifiedUnits(LengthTypePX, 50, es);
|
| + TrackExceptionState exceptionState;
|
| + vectorB[3].newValueSpecifiedUnits(LengthTypePX, 50, exceptionState);
|
| listB = AnimatableStrokeDasharrayList::create(vectorB);
|
| EXPECT_FALSE(listA->equals(listB.get()));
|
|
|
|
|