From e2aa07c06c2c5831641e25f2b7154b635029efea Mon Sep 17 00:00:00 2001 From: "Brian M. Carlson" Date: Tue, 13 Jan 2015 18:13:20 -0500 Subject: [PATCH] Remove error code test on native --- test/integration/client/query-error-handling-tests.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/integration/client/query-error-handling-tests.js b/test/integration/client/query-error-handling-tests.js index 6320beff..36bade72 100644 --- a/test/integration/client/query-error-handling-tests.js +++ b/test/integration/client/query-error-handling-tests.js @@ -36,12 +36,13 @@ test('error during query execution', function() { })); }); +if(helper.config.native) return; + test('9.3 column error fields', function() { var client = new Client(helper.args); client.connect(assert.success(function() { helper.versionGTE(client, '9.3.0', assert.success(function(isGreater) { if(!isGreater) { - console.log('skip 9.3 error field on older versions of postgres'); return client.end(); } @@ -81,4 +82,4 @@ test('9.3 constraint error fields', function() { }); })); })); -}); \ No newline at end of file +});