Changeset 1812
- Timestamp:
- 01/01/06 12:43:09 (3 years ago)
- Files:
-
- django/trunk/tests/othertests/httpwrappers.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/othertests/httpwrappers.py
r1504 r1812 9 9 Traceback (most recent call last): 10 10 ... 11 MultiValueDictKeyError: "Key 'foo' not found in MultiValueDict {}"11 MultiValueDictKeyError: "Key 'foo' not found in MultiValueDict <MultiValueDict: {}>" 12 12 13 13 >>> q['something'] = 'bar' … … 87 87 Traceback (most recent call last): 88 88 ... 89 MultiValueDictKeyError: "Key 'foo' not found in MultiValueDict {}"89 MultiValueDictKeyError: "Key 'foo' not found in MultiValueDict <MultiValueDict: {}>" 90 90 91 91 >>> q['name'] = 'john' … … 187 187 Traceback (most recent call last): 188 188 ... 189 MultiValueDictKeyError: "Key 'bar' not found in MultiValueDict {'foo': ['bar']}"189 MultiValueDictKeyError: "Key 'bar' not found in MultiValueDict <MultiValueDict: {'foo': ['bar']}>" 190 190 191 191 >>> q['something'] = 'bar'
