Skip to content

Commit 124c89b

Browse files
author
Hetul Patel
committed
fix lint issues
1 parent ff09b3f commit 124c89b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/close.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,12 @@ describe('close', function() {
1414
const cursor = new Cursor(text)
1515
this.client.query(cursor)
1616
this.client.query('SELECT NOW()', done)
17-
cursor.read(100, function (err, res) {
17+
cursor.read(100, function(err) {
1818
assert.ifError(err)
1919
cursor.close()
2020
})
2121
})
2222

23-
2423
it('closes cursor early', function(done) {
2524
const cursor = new Cursor(text)
2625
this.client.query(cursor)

0 commit comments

Comments
 (0)