Hi,
in a fresh Django 1.3 project (directly after django_admin
startproject) I set this in the settings.py:
MESSAGE_TAGS = {
    40: "ui-state-error",     # ERROR
    30: "ui-state-highlight", # WARNING
    20: "ui-state-info",      # INFO
    25: "ui-state-success",   # SUCCESS
}
which causes a test failure in
django.contrib.messages.tests.cookie.CookieTest.test_tags.
http://pastebin.com/DSWdgCEf
As far as I can see, I did everything the way the docs say, so is
there a possibility to make the test pass?
I haven't found a corresponding bug in the issue tracker.
Cheers,