MDL-43235 behat: Remove notice about undeclared var

This commit is contained in:
David Monllao 2013-12-18 16:02:02 +08:00
parent 8d7c3b0d50
commit 6acf61d35e

View file

@ -148,7 +148,9 @@ class behat_command {
} }
// Checking behat dataroot existence otherwise echo about admin/tool/behat/cli/init.php. // Checking behat dataroot existence otherwise echo about admin/tool/behat/cli/init.php.
if (!empty($CFG->behat_dataroot)) {
$CFG->behat_dataroot = realpath($CFG->behat_dataroot); $CFG->behat_dataroot = realpath($CFG->behat_dataroot);
}
if (empty($CFG->behat_dataroot) || !is_dir($CFG->behat_dataroot) || !is_writable($CFG->behat_dataroot)) { if (empty($CFG->behat_dataroot) || !is_dir($CFG->behat_dataroot) || !is_writable($CFG->behat_dataroot)) {
self::output_msg(get_string('runclitool', 'tool_behat', 'php admin/tool/behat/cli/init.php')); self::output_msg(get_string('runclitool', 'tool_behat', 'php admin/tool/behat/cli/init.php'));
return BEHAT_EXITCODE_CONFIG; return BEHAT_EXITCODE_CONFIG;