From f29641a554ab3aef131cc33dfd61e987c1afd9c6 Mon Sep 17 00:00:00 2001 From: Neill Magill Date: Wed, 9 Aug 2017 15:15:39 +0100 Subject: [PATCH] MDL-58435 behat: Behat section editing step should work on section 0 --- course/tests/behat/behat_course.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course/tests/behat/behat_course.php b/course/tests/behat/behat_course.php index df95cce26ff..c26a85278c2 100644 --- a/course/tests/behat/behat_course.php +++ b/course/tests/behat/behat_course.php @@ -386,7 +386,7 @@ class behat_course extends behat_base { // We need to know the course format as the text strings depends on them. $courseformat = $this->get_course_format(); - if (get_string_manager()->string_exists('editsection', $courseformat)) { + if ($sectionnumber > 0 && get_string_manager()->string_exists('editsection', $courseformat)) { $stredit = get_string('editsection', $courseformat); } else { $stredit = get_string('editsection');