Skip to content

Commit

Permalink
MDL-60418 Behat: Fix missing $installurl
Browse files Browse the repository at this point in the history
  • Loading branch information
stronk7 committed Apr 25, 2019
1 parent 605d3e8 commit 6c94882
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion admin/tool/behat/renderer.php
Expand Up @@ -162,7 +162,8 @@ protected function generic_info() {
$html .= $this->output->heading($title);

// Info.
$installlink = html_writer::tag('a', $installurl, array('href' => behat_command::DOCS_URL, 'target' => '_blank'));
$installurl = behat_command::DOCS_URL;
$installlink = html_writer::tag('a', $installurl, array('href' => $installurl, 'target' => '_blank'));
$writetestsurl = 'https://docs.moodle.org/dev/Writing acceptance tests';
$writetestslink = html_writer::tag('a', $writetestsurl, array('href' => $writetestsurl, 'target' => '_blank'));
$writestepsurl = 'https://docs.moodle.org/dev/Writing_new_acceptance_test_step_definitions';
Expand Down

0 comments on commit 6c94882

Please sign in to comment.