Django

Code

Changeset 1812

Show
Ignore:
Timestamp:
01/01/06 12:43:09 (3 years ago)
Author:
adrian
Message:

Fixed httpwrappers unit tests to reflect MultiValueDict? repr() change

Files:

Legend:

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

    r1504 r1812  
    99Traceback (most recent call last): 
    1010... 
    11 MultiValueDictKeyError: "Key 'foo' not found in MultiValueDict {}
     11MultiValueDictKeyError: "Key 'foo' not found in MultiValueDict <MultiValueDict: {}>
    1212 
    1313>>> q['something'] = 'bar' 
     
    8787Traceback (most recent call last): 
    8888... 
    89 MultiValueDictKeyError: "Key 'foo' not found in MultiValueDict {}
     89MultiValueDictKeyError: "Key 'foo' not found in MultiValueDict <MultiValueDict: {}>
    9090 
    9191>>> q['name'] = 'john' 
     
    187187Traceback (most recent call last): 
    188188... 
    189 MultiValueDictKeyError: "Key 'bar' not found in MultiValueDict {'foo': ['bar']}
     189MultiValueDictKeyError: "Key 'bar' not found in MultiValueDict <MultiValueDict: {'foo': ['bar']}>
    190190 
    191191>>> q['something'] = 'bar'