Index: sky/engine/core/animation/AnimationPlayerTest.cpp |
diff --git a/sky/engine/core/animation/AnimationPlayerTest.cpp b/sky/engine/core/animation/AnimationPlayerTest.cpp |
index c458135388b50d1c54b84e4e4cf13256f7a8f842..61bee409f9939bc172f5f0b8a0c02bf58307bf1e 100644 |
--- a/sky/engine/core/animation/AnimationPlayerTest.cpp |
+++ b/sky/engine/core/animation/AnimationPlayerTest.cpp |
@@ -487,7 +487,7 @@ TEST_F(AnimationAnimationPlayerTest, Finish) |
EXPECT_EQ(0, player->currentTimeInternal()); |
EXPECT_TRUE(player->finished()); |
- EXPECT_FALSE(exceptionState.hadException()); |
+ EXPECT_FALSE(exceptionState.had_exception()); |
} |
TEST_F(AnimationAnimationPlayerTest, FinishAfterSourceEnd) |
@@ -523,7 +523,7 @@ TEST_F(AnimationAnimationPlayerTest, FinishRaisesException) |
player->finish(exceptionState); |
EXPECT_EQ(10, player->currentTimeInternal()); |
- EXPECT_TRUE(exceptionState.hadException()); |
+ EXPECT_TRUE(exceptionState.had_exception()); |
EXPECT_EQ(InvalidStateError, exceptionState.code()); |
} |