Skip to content

Commit

Permalink
test: ESLint: no-eq-null
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Morris committed Mar 9, 2017
1 parent 0d528a0 commit 75b2627
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ describe('form', function() {
assert.ok(true, 'pre-callback');
assert.ok(a.constructor == Array, 'type check');
assert.ok(jq.jquery, 'type check jQuery');
assert.ok(arrayValue(a, 'form4inputName') != null, 'submit button');
assert.ok(arrayValue(a, 'form4inputName') !== null, 'submit button');
}
};

Expand All @@ -535,8 +535,8 @@ describe('form', function() {
assert.ok(true, 'pre-callback');
assert.ok(a.constructor == Array, 'type check');
assert.ok(jq.jquery, 'type check jQuery');
assert.ok(arrayValue(a, 'myImage.x') != null, 'x coord');
assert.ok(arrayValue(a, 'myImage.y') != null, 'y coord');
assert.ok(arrayValue(a, 'myImage.x') !== null, 'x coord');
assert.ok(arrayValue(a, 'myImage.y') !== null, 'y coord');
}
};

Expand All @@ -554,8 +554,8 @@ describe('form', function() {
assert.ok(true, 'pre-callback');
assert.ok(a.constructor == Array, 'type check');
assert.ok(jq.jquery, 'type check jQuery');
assert.ok(arrayValue(a, 'myImage.x') != null, 'x coord');
assert.ok(arrayValue(a, 'myImage.y') != null, 'y coord');
assert.ok(arrayValue(a, 'myImage.x') !== null, 'x coord');
assert.ok(arrayValue(a, 'myImage.y') !== null, 'y coord');
}
};

Expand Down

0 comments on commit 75b2627

Please sign in to comment.