]> source.dussan.org Git - jquery-ui.git/commitdiff
Effects tests: Ignore leading/trailing whitespace when comparing style properties.
authorScott González <scott.gonzalez@gmail.com>
Wed, 28 Sep 2011 14:00:25 +0000 (10:00 -0400)
committerScott González <scott.gonzalez@gmail.com>
Wed, 28 Sep 2011 14:00:25 +0000 (10:00 -0400)
tests/unit/effects/effects_core.js

index 2b4d684eb1a87a9ee9fab1670dcdf52bfcdb38ba..1e5da211336baf1d3ae209fefa3d0aac742a049c 100644 (file)
@@ -143,10 +143,10 @@ asyncTest( "animateClass clears style properties when stopped", function() {
        expect( 2 );
 
        test.addClass( "testChangeBackground", duration );
-       notEqual( orig, style.cssText, "cssText is the not the same after starting animation" );
+       notEqual( orig, style.cssText, "cssText is not the same after starting animation" );
 
        test.stop( true, true );
-       equal( orig, style.cssText, "cssText is the same after stopping animation midway" );
+       equal( orig, $.trim( style.cssText ), "cssText is the same after stopping animation midway" );
        start();
 });