Changeset 6396
- Timestamp:
- 09/20/07 10:51:19 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/regressiontests/httpwrappers/tests.py
r5876 r6396 9 9 Traceback (most recent call last): 10 10 ... 11 MultiValueDictKeyError: "Key 'foo' not found in < MultiValueDict: {}>"11 MultiValueDictKeyError: "Key 'foo' not found in <QueryDict: {}>" 12 12 13 13 >>> q['something'] = 'bar' … … 90 90 Traceback (most recent call last): 91 91 ... 92 MultiValueDictKeyError: "Key 'foo' not found in < MultiValueDict: {}>"92 MultiValueDictKeyError: "Key 'foo' not found in <QueryDict: {}>" 93 93 94 94 >>> q['name'] = 'john' … … 202 202 Traceback (most recent call last): 203 203 ... 204 MultiValueDictKeyError: "Key 'bar' not found in < MultiValueDict: {u'foo': [u'bar']}>"204 MultiValueDictKeyError: "Key 'bar' not found in <QueryDict: {u'foo': [u'bar']}>" 205 205 206 206 >>> q['something'] = 'bar'
