Merge pull request #5 from kev52/patch-1

Fixes issues with missing table parameters
This commit is contained in:
Jon Samwell 2019-02-06 11:41:28 +11:00 committed by GitHub
commit 0ecaeb5bb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -218,6 +218,10 @@ class FeatureFileRunner {
if (step.multilineStrings.length > 0) {
parameters = parameters.toList()..addAll(step.multilineStrings);
}
if (step.table != null) {
parameters = parameters.toList()..add(step.table);
}
return parameters;
}