Skip to content

Commit 75b2627

Browse files
author
Kevin Morris
committed
test: ESLint: no-eq-null
1 parent 0d528a0 commit 75b2627

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)