diff options
author | Mike Sherov <mike.sherov@gmail.com> | 2013-03-31 11:55:24 -0400 |
---|---|---|
committer | Mike Sherov <mike.sherov@gmail.com> | 2013-03-31 11:55:24 -0400 |
commit | 384f1812542127e10ea55ba56412a19e5f2b7dda (patch) | |
tree | 379b824fb1f003777c88837b147d4a35be1f1c2b /tests | |
parent | 875139ef8fe97d049fc1231e8465b6dc7699e5dd (diff) | |
download | jquery-ui-384f1812542127e10ea55ba56412a19e5f2b7dda.tar.gz jquery-ui-384f1812542127e10ea55ba56412a19e5f2b7dda.zip |
Sortable Tests: Fix IE7 test failures due to incorrectly expecting relative urls in img srcs.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/sortable/sortable_options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/sortable/sortable_options.js b/tests/unit/sortable/sortable_options.js index a499c01c1..9a072332d 100644 --- a/tests/unit/sortable/sortable_options.js +++ b/tests/unit/sortable/sortable_options.js @@ -330,7 +330,7 @@ test( "{ placeholder: false } img", function() { var element = $( "#sortable-images" ).sortable({ start: function( event, ui ) { - equal( ui.placeholder.attr( "src" ), "../images/jqueryui_32x32.png", "placeholder img has correct src" ); + ok( ui.placeholder.attr( "src" ).indexOf( "images/jqueryui_32x32.png" ) > 0, "placeholder img has correct src" ); equal( ui.placeholder.height(), 32, "placeholder has correct height" ); equal( ui.placeholder.width(), 32, "placeholder has correct width" ); } |