From 124c89b173ca0d6faa9a9509b0b029aa4e864fe0 Mon Sep 17 00:00:00 2001 From: Hetul Patel Date: Fri, 13 Dec 2019 15:30:40 -0800 Subject: [PATCH] fix lint issues --- test/close.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/close.js b/test/close.js index b1557a6a..23fb7f9d 100644 --- a/test/close.js +++ b/test/close.js @@ -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)