=== modified file 'tests/regressiontests/forms/tests.py'
|
|
|
1493 | 1493 | >>> f.clean('3') |
1494 | 1494 | Traceback (most recent call last): |
1495 | 1495 | ... |
1496 | | ValidationError: [u'Select a valid choice. 3 is not one of the available choices.'] |
| 1496 | ValidationError: [u'Select a valid choice. That choice is not one of the available choices.'] |
1497 | 1497 | |
1498 | 1498 | >>> f = ChoiceField(choices=[('1', '1'), ('2', '2')], required=False) |
1499 | 1499 | >>> f.clean('') |
… |
… |
|
1507 | 1507 | >>> f.clean('3') |
1508 | 1508 | Traceback (most recent call last): |
1509 | 1509 | ... |
1510 | | ValidationError: [u'Select a valid choice. 3 is not one of the available choices.'] |
| 1510 | ValidationError: [u'Select a valid choice. That choice is not one of the available choices.'] |
1511 | 1511 | |
1512 | 1512 | >>> f = ChoiceField(choices=[('J', 'John'), ('P', 'Paul')]) |
1513 | 1513 | >>> f.clean('J') |
… |
… |
|
1515 | 1515 | >>> f.clean('John') |
1516 | 1516 | Traceback (most recent call last): |
1517 | 1517 | ... |
1518 | | ValidationError: [u'Select a valid choice. John is not one of the available choices.'] |
| 1518 | ValidationError: [u'Select a valid choice. That choice is not one of the available choices.'] |
1519 | 1519 | |
1520 | 1520 | # NullBooleanField ############################################################ |
1521 | 1521 | |