Skip to content

Commit 7b365ff

Browse files
committed
changed '--libpg true' flag to '--libpq true'
1 parent 1f0206b commit 7b365ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/cli.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ for(var i = 0; i < args.length; i++) {
3838
case '-t':
3939
case '--test':
4040
config.test = args[++i];
41-
case '--libpg':
42-
config.libpg = (args[++i] == "true");
41+
case '--libpq':
42+
config.libpq = (args[++i] == "true");
4343
default:
4444
break;
4545
}

test/test-helper.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buffers = require(__dirname + '/test-buffers');
99
Connection = require('connection');
1010
var args = require(__dirname + '/cli');
1111

12-
if(args.libpg) {
12+
if(args.libpq) {
1313
Client = require('binding').Client;
1414
} else {
1515
Client = require('client');

0 commit comments

Comments
 (0)