Skip to content

Commit

Permalink
Make the updated linter happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mantoni committed Dec 19, 2019
1 parent f34a13e commit d6ba8ae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/spy-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1159,7 +1159,11 @@ describe("spy", function() {
this.spy(1, 2, objects[1]);
this.spy(objects[2], 2, 3);

assert.equals(this.spy.args, [[1, objects[0], 3], [1, 2, objects[1]], [objects[2], 2, 3]]);
assert.equals(this.spy.args, [
[1, objects[0], 3],
[1, 2, objects[1]],
[objects[2], 2, 3]
]);
});
});

Expand Down

0 comments on commit d6ba8ae

Please sign in to comment.