@@ -518,7 +518,7 @@ describe('form', function() {
518518 assert . ok ( true , 'pre-callback' ) ;
519519 assert . ok ( a . constructor == Array , 'type check' ) ;
520520 assert . ok ( jq . jquery , 'type check jQuery' ) ;
521- assert . ok ( arrayValue ( a , 'form4inputName' ) != null , 'submit button' ) ;
521+ assert . ok ( arrayValue ( a , 'form4inputName' ) !== null , 'submit button' ) ;
522522 }
523523 } ;
524524
@@ -535,8 +535,8 @@ describe('form', function() {
535535 assert . ok ( true , 'pre-callback' ) ;
536536 assert . ok ( a . constructor == Array , 'type check' ) ;
537537 assert . ok ( jq . jquery , 'type check jQuery' ) ;
538- assert . ok ( arrayValue ( a , 'myImage.x' ) != null , 'x coord' ) ;
539- assert . ok ( arrayValue ( a , 'myImage.y' ) != null , 'y coord' ) ;
538+ assert . ok ( arrayValue ( a , 'myImage.x' ) !== null , 'x coord' ) ;
539+ assert . ok ( arrayValue ( a , 'myImage.y' ) !== null , 'y coord' ) ;
540540 }
541541 } ;
542542
@@ -554,8 +554,8 @@ describe('form', function() {
554554 assert . ok ( true , 'pre-callback' ) ;
555555 assert . ok ( a . constructor == Array , 'type check' ) ;
556556 assert . ok ( jq . jquery , 'type check jQuery' ) ;
557- assert . ok ( arrayValue ( a , 'myImage.x' ) != null , 'x coord' ) ;
558- assert . ok ( arrayValue ( a , 'myImage.y' ) != null , 'y coord' ) ;
557+ assert . ok ( arrayValue ( a , 'myImage.x' ) !== null , 'x coord' ) ;
558+ assert . ok ( arrayValue ( a , 'myImage.y' ) !== null , 'y coord' ) ;
559559 }
560560 } ;
561561
0 commit comments