Merge branch 'MDL-59091_gherkinlint_fix_33' of https://github.com/mrmark/moodle into MOODLE_33_STABLE

This commit is contained in:
Dan Poltawski
2017-06-03 08:54:44 +01:00
3 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -338,7 +338,7 @@ module.exports = function(grunt) {
opts: {stdio: 'inherit', env: process.env}
}, function(error, result, code) {
// Propagate the exit code.
done(code);
done(code === 0);
});
};
@@ -4,7 +4,7 @@ Feature: Set entries required as a completion condition for a data item
As a teacher
I need to set entries required to mark the database activity as completed
Scenario: Two entries required to complete the activity
Scenario: Two entries required to complete the activity
Given the following "users" exist:
| username | firstname | lastname | email |
| student1 | Student | 1 | student1@example.com |
@@ -167,4 +167,3 @@ Feature: Edit quiz page - remove multiple questions
When I click on "Deselect all" "link"
Then the field "selectquestion-3" matches value "0"