Adds more exits cucumber scenarios

This commit is contained in:
Daniel J. Hofmann
2017-06-30 13:10:17 +02:00
committed by Patrick Niklaus
parent 98caa0bcd9
commit ba2a0b3566
2 changed files with 71 additions and 1 deletions
+1 -1
View File
@@ -245,7 +245,7 @@ module.exports = function () {
} else if (row.waypoints) {
row.waypoints.split(',').forEach((n) => {
var node = this.findNodeByName(n.trim());
if (!node) return cb(new Error('*** unknown waypoint node "%s"', n.trim()));
if (!node) return cb(new Error(util.format('*** unknown waypoint node "%s"', n.trim())));
waypoints.push(node);
});
got.waypoints = row.waypoints;