From e5d2f96099cff2c17faa8a8a28cd5c90a5375b58 Mon Sep 17 00:00:00 2001 From: Mayhem Date: Sun, 22 Feb 2015 21:30:22 +0100 Subject: [PATCH] Use strictEqual instead --- test/native/callback-api-tests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/native/callback-api-tests.js b/test/native/callback-api-tests.js index 772e7014..95e9a8ff 100644 --- a/test/native/callback-api-tests.js +++ b/test/native/callback-api-tests.js @@ -8,7 +8,7 @@ test('fires callback with results', function() { client.query('SELECT 1 as num', assert.calls(function(err, result) { assert.isNull(err); assert.equal(result.rows[0].num, 1); - assert.equal(result.rowCount, 1); + assert.strictEqual(result.rowCount, 1); client.query('SELECT * FROM person WHERE name = $1', ['Brian'], assert.calls(function(err, result) { assert.isNull(err); assert.equal(result.rows[0].name, 'Brian');