From 384f1812542127e10ea55ba56412a19e5f2b7dda Mon Sep 17 00:00:00 2001 From: Mike Sherov Date: Sun, 31 Mar 2013 11:55:24 -0400 Subject: [PATCH] Sortable Tests: Fix IE7 test failures due to incorrectly expecting relative urls in img srcs. --- tests/unit/sortable/sortable_options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" ); } -- 2.39.5