diff options
author | Oleg <markelog@gmail.com> | 2013-08-10 10:49:14 +0400 |
---|---|---|
committer | Oleg <markelog@gmail.com> | 2013-08-10 10:57:00 +0400 |
commit | 032ef3525c3ad940ea6cf6f9663e27b364a91f84 (patch) | |
tree | e3e8e997205a894c42c752cdd235f3cf8b615051 /test | |
parent | 4b74fe1a6e77db024ecdaf7f79735bc3d4aadfe9 (diff) | |
download | jquery-032ef3525c3ad940ea6cf6f9663e27b364a91f84.tar.gz jquery-032ef3525c3ad940ea6cf6f9663e27b364a91f84.zip |
Correct typos in the test assertion
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/effects.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js index 82ca6c26c..4917febf8 100644 --- a/test/unit/effects.js +++ b/test/unit/effects.js @@ -1464,7 +1464,7 @@ asyncTest("line-height animates correctly (#13855)", 12, function() { initial = initialHeight[ i ], height = jQuery( this ).height(); ok( height < initial, "hide " + label + ": upper bound; height: " + height + "; intitial: " + initial ); - ok( height > initial / 3, "hide " + label + ": lower bound; height: " + height + "; intitial/3: " + initial ); + ok( height > initial / 2, "hide " + label + ": lower bound; height: " + height + "; intitial/2: " + initial / 2 ); }); animated.stop( true, true ).hide().animate( { "line-height": "show" }, 1500 ); setTimeout(function() { |