Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Hetul Patel committed Dec 13, 2019
1 parent ff09b3f commit 124c89b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/close.js
Expand Up @@ -14,13 +14,12 @@ describe('close', function() {
const cursor = new Cursor(text)
this.client.query(cursor)
this.client.query('SELECT NOW()', done)
cursor.read(100, function (err, res) {
cursor.read(100, function(err) {
assert.ifError(err)
cursor.close()
})
})


it('closes cursor early', function(done) {
const cursor = new Cursor(text)
this.client.query(cursor)
Expand Down

0 comments on commit 124c89b

Please sign in to comment.