Skip to content

Commit

Permalink
correct eslint statements
Browse files Browse the repository at this point in the history
  • Loading branch information
Flarna authored and mroderick committed Feb 24, 2018
1 parent 7380a03 commit 4cf8a83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/collection-test.js
Expand Up @@ -102,7 +102,7 @@ describe("collection", function () {

for (var i = 0; i < types.length; i++) {
// yes, it's silly to create functions in a loop, it's also a test
// eslint-disable-next-line no-loop-func ie11/no-loop-func
// eslint-disable-next-line no-loop-func, ie11/no-loop-func
assert.exception(function () {
this.collection.createStubInstance(types[i]);
});
Expand Down
2 changes: 1 addition & 1 deletion test/stub-test.js
Expand Up @@ -2451,7 +2451,7 @@ describe("stub", function () {

for (var i = 0; i < types.length; i++) {
// yes, it's silly to create functions in a loop, it's also a test
// eslint-disable-next-line no-loop-func ie11/no-loop-func
// eslint-disable-next-line no-loop-func, ie11/no-loop-func
assert.exception(function () {
createStubInstance(types[i]);
});
Expand Down

0 comments on commit 4cf8a83

Please sign in to comment.