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

This commit is contained in:
David Mudrák
2021-07-01 19:32:13 +02:00
parent da5fce12a1
commit 242bda330f
@@ -95,16 +95,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."