@@ -145,13 +145,13 @@ asyncTest("invocation", function() {
145
145
function step3 ( ) {
146
146
// On image button
147
147
inp = TestHelpers . datepicker . init ( "#inp" , { showOn : "button" , buttonImageOnly : true ,
148
- buttonImage : "img /calendar.gif" , buttonText : "Cal" } ) ;
148
+ buttonImage : "images /calendar.gif" , buttonText : "Cal" } ) ;
149
149
ok ( ! dp . is ( ":visible" ) , "Image button - initially hidden" ) ;
150
150
button = inp . siblings ( "button" ) ;
151
151
ok ( button . length === 0 , "Image button - button absent" ) ;
152
152
image = inp . siblings ( "img" ) ;
153
153
ok ( image . length === 1 , "Image button - image present" ) ;
154
- equal ( image . attr ( "src" ) , "img /calendar.gif" , "Image button - image source" ) ;
154
+ equal ( image . attr ( "src" ) , "images /calendar.gif" , "Image button - image source" ) ;
155
155
equal ( image . attr ( "title" ) , "Cal" , "Image button - image text" ) ;
156
156
inp [ 0 ] . focus ( ) ;
157
157
setTimeout ( function ( ) {
@@ -168,7 +168,7 @@ asyncTest("invocation", function() {
168
168
169
169
function step4 ( ) {
170
170
// On both
171
- inp = TestHelpers . datepicker . init ( "#inp" , { showOn : "both" , buttonImage : "img /calendar.gif" } ) ;
171
+ inp = TestHelpers . datepicker . init ( "#inp" , { showOn : "both" , buttonImage : "images /calendar.gif" } ) ;
172
172
ok ( ! dp . is ( ":visible" ) , "Both - initially hidden" ) ;
173
173
button = inp . siblings ( "button" ) ;
174
174
ok ( button . length === 1 , "Both - button present" ) ;
0 commit comments