From 0205860dfdd206811a711d5d35749d7a8ffaa592 Mon Sep 17 00:00:00 2001 From: Stephen Sugden Date: Sun, 19 Aug 2012 12:20:48 -0700 Subject: [PATCH] Fix typos in simple-query-tests.js --- test/unit/client/simple-query-tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/unit/client/simple-query-tests.js b/test/unit/client/simple-query-tests.js index af5a630..19f05c1 100644 --- a/test/unit/client/simple-query-tests.js +++ b/test/unit/client/simple-query-tests.js @@ -82,7 +82,7 @@ test('executing query', function() { name: 'boom' }] }); - assert.ok(handled, "should have handlded rowDescritpion"); + assert.ok(handled, "should have handlded rowDescription"); }); test('handles dataRow messages', function() { @@ -116,7 +116,7 @@ test('executing query', function() { }); con.emit("readyForQuery"); //this would never actually happen - ['dataRow','rowDescritpion', 'commandComplete'].forEach(function(msg) { + ['dataRow','rowDescription', 'commandComplete'].forEach(function(msg) { assert.equal(con.emit(msg), false, "Should no longer be picking up '"+ msg +"' messages"); }); });