fixed typo

This commit is contained in:
Maram Sumanth 2019-03-26 16:46:15 +05:30 committed by GitHub
parent ae856e8ba8
commit 5f2ad5377e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ class FormRequestTest(RequestTest):
fs = _qs(self.request_class(url, method='GET', formdata=data))
self.assertEqual(set(fs[b'a']), {b'one', b'two'})
self.assertEqual(fs[b'b'], [b'2'])
self.assertIsNone(fs.get([b'c']))
self.assertIsNone(fs.get(b'c'))
data = {'a' : '1', 'b' : '2'}
fs = _qs(self.request_class('http://www.example.com/', method='GET', formdata=data))