Skip to content

Commit d6ba8ae

Browse files
committed
Make the updated linter happy
1 parent f34a13e commit d6ba8ae

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/spy-test.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,11 @@ describe("spy", function() {
11591159
this.spy(1, 2, objects[1]);
11601160
this.spy(objects[2], 2, 3);
11611161

1162-
assert.equals(this.spy.args, [[1, objects[0], 3], [1, 2, objects[1]], [objects[2], 2, 3]]);
1162+
assert.equals(this.spy.args, [
1163+
[1, objects[0], 3],
1164+
[1, 2, objects[1]],
1165+
[objects[2], 2, 3]
1166+
]);
11631167
});
11641168
});
11651169

0 commit comments

Comments
 (0)