Skip to content

Commit c8e46f2

Browse files
committed
Fix one of the animate tests
1 parent 75ec8a5 commit c8e46f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/jasmine/tests/transition_test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ describe('Plots.supplyAnimationTransitionDefaults', function() {
1414

1515
it('supplies transition defaults', function() {
1616
expect(Plots.supplyAnimationDefaults({})).toEqual({
17-
immediate: 'afterall',
17+
mode: 'afterall',
1818
transition: {
1919
duration: 500,
2020
easing: 'cubic-in-out'
@@ -28,7 +28,7 @@ describe('Plots.supplyAnimationTransitionDefaults', function() {
2828

2929
it('uses provided values', function() {
3030
expect(Plots.supplyAnimationDefaults({
31-
immediate: 'next',
31+
mode: 'next',
3232
transition: {
3333
duration: 600,
3434
easing: 'elastic-in-out'
@@ -38,7 +38,7 @@ describe('Plots.supplyAnimationTransitionDefaults', function() {
3838
redraw: false
3939
}
4040
})).toEqual({
41-
immediate: 'next',
41+
mode: 'next',
4242
transition: {
4343
duration: 600,
4444
easing: 'elastic-in-out'

0 commit comments

Comments
 (0)