MDL-72063 lang: Use fixed strings in tests, too

This commit is contained in:
David Mudrák 2021-07-01 14:14:01 +02:00
parent ab53075f22
commit d2e9ca4821

View File

@ -99,16 +99,16 @@ Feature: Basic use of the Manual grading report
When I set the following fields to these values:
| Questions per page | 0 |
And I press "Change options"
Then I should see "You must enter a number that greater than 0 here"
Then I should see "You must enter a number that is greater than 0."
And I set the following fields to these values:
| Questions per page | -1 |
And I press "Change options"
And I should see "You must enter a number that greater than 0 here"
And I should see "You must enter a number that is greater than 0."
And I set the following fields to these values:
| Questions per page | abc |
And I press "Change options"
And I should see "You must enter a number that greater than 0 here"
And I should see "You must enter a number that is greater than 0."
And I set the following fields to these values:
| Questions per page | 1 |
And I press "Change options"
And I should not see "You must enter a number that greater than 0 here"
And I should not see "You must enter a number that is greater than 0."