@@ -232,7 +232,7 @@ var Globals = (function() {
232232 // Since this method was called it means some data was
233233 // expected to be found, but since there is nothing, fail early
234234 // (instead of in teardown).
235- notStrictEqual ( expando , undefined , ' Target for expectJqData must have an expando, for else there can be no data to expect.' ) ;
235+ notStrictEqual ( expando , undefined , " Target for expectJqData must have an expando, for else there can be no data to expect." ) ;
236236 } else {
237237 if ( expectedDataKeys [ expando ] ) {
238238 expectedDataKeys [ expando ] . push ( key ) ;
@@ -243,9 +243,9 @@ var Globals = (function() {
243243 }
244244 } ;
245245 QUnit . config . urlConfig . push ( {
246- id : ' jqdata' ,
247- label : ' Always check jQuery.data' ,
248- tooltip : ' Trigger " QUnit.expectJqData" detection for all tests instead of just the ones that call it'
246+ id : " jqdata" ,
247+ label : " Always check jQuery.data" ,
248+ tooltip : " Trigger QUnit.expectJqData detection for all tests instead of just the ones that call it"
249249 } ) ;
250250
251251 /**
@@ -265,14 +265,14 @@ var Globals = (function() {
265265 expectedKeys = expectedDataKeys [ i ] ;
266266 actualKeys = jQuery . cache [ i ] ? keys ( jQuery . cache [ i ] ) : jQuery . cache [ i ] ;
267267 if ( ! QUnit . equiv ( expectedKeys , actualKeys ) ) {
268- deepEqual ( actualKeys , expectedKeys , ' Expected keys exist in jQuery.cache' ) ;
268+ deepEqual ( actualKeys , expectedKeys , " Expected keys exist in jQuery.cache" ) ;
269269 }
270270 delete jQuery . cache [ i ] ;
271271 delete expectedDataKeys [ i ] ;
272272 }
273273 // In case it was removed from cache before (or never there in the first place)
274274 for ( i in expectedDataKeys ) {
275- deepEqual ( expectedDataKeys [ i ] , undefined , ' No unexpected keys were left in jQuery.cache (#' + i + ')' ) ;
275+ deepEqual ( expectedDataKeys [ i ] , undefined , " No unexpected keys were left in jQuery.cache (#" + i + ")" ) ;
276276 delete expectedDataKeys [ i ] ;
277277 }
278278 }
@@ -359,5 +359,5 @@ QUnit.config.requireExpects = true;
359359 return ;
360360 }
361361
362- document . write ( "<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + ( new Date ) . getTime ( ) + "'></scr" + "ipt>" ) ;
362+ document . write ( "<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + ( new Date ( ) ) . getTime ( ) + "'></scr" + "ipt>" ) ;
363363} ) ( ) ;
0 commit comments