From 0787df4f746282d761985dae87882b8ee8db00c8 Mon Sep 17 00:00:00 2001 From: brianc Date: Thu, 28 Oct 2010 01:04:55 -0500 Subject: [PATCH] remove detailed logging from integration test --- test/integration/client/prepared-statement-tests.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/integration/client/prepared-statement-tests.js b/test/integration/client/prepared-statement-tests.js index 7d48869f..c8b49e71 100644 --- a/test/integration/client/prepared-statement-tests.js +++ b/test/integration/client/prepared-statement-tests.js @@ -2,9 +2,7 @@ var helper = require(__dirname +'/test-helper'); test("simple prepared statement", function(){ var client = helper.client(); - client.connection.on('message', function(msg) { - console.log(msg.name); - }); + var query = client.query({ text: 'select age from person where name = $1', values: ['Brian']