Skip to content

Commit d4742cb

Browse files
committed
Correct failing integration test.
1 parent d6f24ca commit d4742cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/connection/test-named-paceholders.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ assert.equal(sql, 'SELECT * from test_table where num1 < 2 and num2 > 100');
5656
connection.end();
5757

5858
var pool = common.createPool();
59-
pool.config.namedPlaceholders = true;
59+
pool.config.connectionConfig.namedPlaceholders = true;
6060
pool.query('SELECT :a + :a as sum', {a: 2}, function (err, rows, fields) {
6161
pool.end();
6262
if (err) {

0 commit comments

Comments
 (0)