From 325d2e00bb142591e1873908a464007eb46ada16 Mon Sep 17 00:00:00 2001 From: Dave Methvin Date: Sun, 23 Apr 2017 22:09:13 -0400 Subject: [PATCH] Effects: Align with core behavior change See discussion, particularly the last sentence: https://github.com/jquery/jquery/commit/6d43dc42337089f5fb52b715981c12993f490920 --- test/effects.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/effects.js b/test/effects.js index 3cbe9a9e..487e4cc4 100644 --- a/test/effects.js +++ b/test/effects.js @@ -5,13 +5,12 @@ QUnit.test( "jQuery.easing", function( assert ) { easingCallCount = 0, animComplete = assert.async(); - assert.expect( 7 ); + assert.expect( 6 ); jQuery.easing.test = function( p, n, firstNum, diff ) { // First frame of animation if ( easingCallCount === 0 ) { - assert.equal( p, 0 ); assert.notEqual( n, undefined ); assert.notEqual( firstNum, undefined ); assert.notEqual( diff, undefined );