diff options
Diffstat (limited to 'test/unit/css.js')
-rw-r--r-- | test/unit/css.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/css.js b/test/unit/css.js index e97e16d6b..3117b12d7 100644 --- a/test/unit/css.js +++ b/test/unit/css.js @@ -218,9 +218,9 @@ test( "css() non-px relative values (gh-1711)", 17, function() { $child.css( prop, adjustment ); cssCurrent = parseFloat( $child.css( prop ) ); - // Require a difference of less than one pixel + // Require a difference of no more than one pixel difference = Math.abs( cssCurrent - expected ); - if ( difference < 1 ) { + if ( difference <= 1 ) { ok( true, message ); // ...or fail with actual and expected values |