Effects: Remove needless operations in tests

Ref 10024c2582
This commit is contained in:
Oleg Gaidarenko
2014-05-09 04:08:48 +04:00
parent 37f0f7f42c
commit 13040b655a

View File

@@ -5,8 +5,6 @@ if ( !jQuery.fx ) {
return;
}
var off = jQuery.fx.off;
module("effects", {
setup: function() {
this.clock = sinon.useFakeTimers( 505877050 );
@@ -17,7 +15,6 @@ module("effects", {
this.clock.restore();
jQuery.fx.stop();
jQuery.fx.interval = this._oldInterval;
jQuery.fx.off = off;
return moduleTeardown.apply( this, arguments );
}
});