Skip to content
Permalink
Browse files
Correct typos in the test assertion
  • Loading branch information
markelog committed Aug 10, 2013
1 parent 5bbfa46 commit 012bda7
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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() {

0 comments on commit 012bda7

Please sign in to comment.