1
0
mirror of https://github.com/django/django.git synced 2025-10-30 17:16:10 +00:00

Removed redundant list() calls.

This commit is contained in:
Tim Graham
2015-05-16 09:15:54 -04:00
parent c2bc1cefdc
commit eda12ceef1
3 changed files with 8 additions and 8 deletions

View File

@@ -140,13 +140,13 @@ class QueryDictTests(unittest.TestCase):
self.assertTrue(q.has_key('foo'))
self.assertIn('foo', q)
self.assertListEqual(sorted(list(six.iteritems(q))),
self.assertListEqual(sorted(six.iteritems(q)),
[('foo', 'another'), ('name', 'john')])
self.assertListEqual(sorted(list(six.iterlists(q))),
self.assertListEqual(sorted(six.iterlists(q)),
[('foo', ['bar', 'baz', 'another']), ('name', ['john'])])
self.assertListEqual(sorted(list(six.iterkeys(q))),
self.assertListEqual(sorted(six.iterkeys(q)),
['foo', 'name'])
self.assertListEqual(sorted(list(six.itervalues(q))),
self.assertListEqual(sorted(six.itervalues(q)),
['another', 'john'])
q.update({'foo': 'hello'})