Django

Code

Changeset 6396

Show
Ignore:
Timestamp:
09/20/07 10:51:19 (1 year ago)
Author:
jacob
Message:

Fixed httpwrappers tests broken by [6385].

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/tests/regressiontests/httpwrappers/tests.py

    r5876 r6396  
    99Traceback (most recent call last): 
    1010... 
    11 MultiValueDictKeyError: "Key 'foo' not found in <MultiValueDict: {}>" 
     11MultiValueDictKeyError: "Key 'foo' not found in <QueryDict: {}>" 
    1212 
    1313>>> q['something'] = 'bar' 
     
    9090Traceback (most recent call last): 
    9191... 
    92 MultiValueDictKeyError: "Key 'foo' not found in <MultiValueDict: {}>" 
     92MultiValueDictKeyError: "Key 'foo' not found in <QueryDict: {}>" 
    9393 
    9494>>> q['name'] = 'john' 
     
    202202Traceback (most recent call last): 
    203203... 
    204 MultiValueDictKeyError: "Key 'bar' not found in <MultiValueDict: {u'foo': [u'bar']}>" 
     204MultiValueDictKeyError: "Key 'bar' not found in <QueryDict: {u'foo': [u'bar']}>" 
    205205 
    206206>>> q['something'] = 'bar'