Pass tests

This commit is contained in:
Peter Jaszkowiak
2017-01-02 23:03:34 -07:00
parent ec544518e8
commit 11f7cc4163
5 changed files with 8 additions and 10 deletions

View File

@@ -262,11 +262,11 @@ module.exports.testSocket = function (socketPath, callback) {
var file = require('./file');
async.series([
function (next) {
file.exists(socketPath, function (exists) {
file.exists(socketPath, function (err, exists) {
if (exists) {
next();
} else {
callback();
callback(err);
}
});
},