MDL-55986 behat: use double quotes not single

On windows we need option value to be in
double quotes, else it fails
This commit is contained in:
Rajesh Taneja
2016-10-06 15:03:56 +08:00
parent 0223a663a9
commit f32c2fd781
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -269,7 +269,7 @@ function commands_to_execute($options) {
if ($options[$option]) {
$extra .= " --$option";
if ($value) {
$extra .= "='$value'";
$extra .= "=\"$value\"";
}
}
}