summaryrefslogtreecommitdiff
path: root/tests/admin_widgets/tests.py
diff options
context:
space:
mode:
authorelky <mansellfan@gmail.com>2015-05-08 22:52:15 +0500
committerTim Graham <timograham@gmail.com>2015-07-30 15:18:22 -0400
commit35901e64b043733acd1687734274553cf994511b (patch)
tree4bb1d033d79733ee868cbe3c0086fec2a732871f /tests/admin_widgets/tests.py
parente176de25127a2750ea1c6a705b2c0983b5782b41 (diff)
downloaddjango-35901e64b043733acd1687734274553cf994511b.tar.gz
Fixed #24444 -- Updated contrib.admin to use django-flat-theme
Diffstat (limited to 'tests/admin_widgets/tests.py')
-rw-r--r--tests/admin_widgets/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/admin_widgets/tests.py b/tests/admin_widgets/tests.py
index c42553a339..50e0ccb715 100644
--- a/tests/admin_widgets/tests.py
+++ b/tests/admin_widgets/tests.py
@@ -755,7 +755,7 @@ class DateTimePickerSeleniumFirefoxTests(SeleniumDataMixin, AdminSeleniumWebDriv
# Get the expected caption
may_translation = month_names.split(' ')[4]
- expected_caption = '{0:s} {1:d}'.format(may_translation, 1984)
+ expected_caption = '{0:s} {1:d}'.format(may_translation.upper(), 1984)
# Test with every locale
with override_settings(LANGUAGE_CODE=language_code, USE_L10N=True):