diff options
| author | Tim Graham <timograham@gmail.com> | 2017-05-31 19:29:34 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-05-31 19:33:26 -0400 |
| commit | af9a81aa7f14ae1a9fd1f25676f526a43f0c65f3 (patch) | |
| tree | 4a6d34b743c561545bd5debc0c8c50d28d176aa9 /tests | |
| parent | 02158a785eff923110cb4c7c7e635d3ce4a928e3 (diff) | |
[1.11.x] Fixed a forms test after updated translations.
Backport of 84fb50df670c8126983c9f0fd4a5c30dbe57b684 from master
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/forms_tests/field_tests/test_datefield.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/forms_tests/field_tests/test_datefield.py b/tests/forms_tests/field_tests/test_datefield.py index b23b5a42ce..e3a02f9533 100644 --- a/tests/forms_tests/field_tests/test_datefield.py +++ b/tests/forms_tests/field_tests/test_datefield.py @@ -104,7 +104,7 @@ class DateFieldTest(SimpleTestCase): a = GetDate({'mydate_month': '2', 'mydate_day': '31', 'mydate_year': '2010'}) self.assertFalse(a.is_valid()) # 'Geef een geldige datum op.' = 'Enter a valid date.' - self.assertEqual(a.errors, {'mydate': ['Geef een geldige datum op.']}) + self.assertEqual(a.errors, {'mydate': ['Voer een geldige datum in.']}) @override_settings(USE_L10N=True) @translation.override('nl') |
