Skip to content

Commit e693dad

Browse files
committed
Fix require paths (follow up to d9db8cd)
1 parent d9db8cd commit e693dad

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/release-connection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ module.exports = {
5656

5757

5858
fn: function releaseConnection(inputs, exits) {
59-
var validateConnection = require('../helpers/validate-connection');
59+
var validateConnection = require('./private/validate-connection');
6060

6161
// Validate provided connection.
6262
if (!validateConnection({ connection: inputs.connection }).execSync()) {

lib/send-native-query.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ module.exports = {
9191

9292

9393
fn: function sendNativeQuery(inputs, exits) {
94-
var validateConnection = require('../helpers/validate-connection');
94+
var validateConnection = require('./private/validate-connection');
9595

9696
// Validate provided connection.
9797
if (!validateConnection({ connection: inputs.connection }).execSync()) {

0 commit comments

Comments
 (0)