diff options
-rw-r--r-- | tests/unit/datepicker/datepicker_options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/datepicker/datepicker_options.js b/tests/unit/datepicker/datepicker_options.js index 25257e99f..b5dd4cac2 100644 --- a/tests/unit/datepicker/datepicker_options.js +++ b/tests/unit/datepicker/datepicker_options.js @@ -166,7 +166,7 @@ asyncTest( "invocation", function() { ok( button.length === 0, "Image button - button absent" ); image = inp.siblings( "img" ); ok( image.length === 1, "Image button - image present" ); - equal( image.attr( "src" ), "images/calendar.gif", "Image button - image source" ); + ok( /images\/calendar\.gif$/.test( image.attr( "src" ) ), "Image button - image source" ); equal( image.attr( "title" ), "Cal", "Image button - image text" ); TestHelpers.datepicker.onFocus( inp, function() { |