remove detailed logging from integration test

This commit is contained in:
brianc 2010-10-28 01:04:55 -05:00
parent 104727fd87
commit 0787df4f74

View File

@ -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']