aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorOleg <markelog@gmail.com>2013-08-10 10:49:14 +0400
committerOleg <markelog@gmail.com>2013-08-10 10:49:14 +0400
commit012bda75f1941eb60869be1e4b6606aa40b17024 (patch)
tree338cacf005adfb318f7be2cd03227895b3c6cfdd /test
parent5bbfa46aba1e6d2d56923f77b194371791f75061 (diff)
downloadjquery-012bda75f1941eb60869be1e4b6606aa40b17024.tar.gz
jquery-012bda75f1941eb60869be1e4b6606aa40b17024.zip
Correct typos in the test assertion
Diffstat (limited to 'test')
-rw-r--r--test/unit/effects.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/effects.js b/test/unit/effects.js
index 18dac1f3d..87bb151e9 100644
--- a/test/unit/effects.js
+++ b/test/unit/effects.js
@@ -1430,7 +1430,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() {