mirror of
https://github.com/django/django.git
synced 2025-08-31 15:57:45 +00:00
Removed uneeded iter() calls with generator expression as argument.
This commit is contained in:
parent
b8c48d06fa
commit
b1a2ad6925
2 changed files with 5 additions and 5 deletions
|
@ -249,11 +249,11 @@ class BackendTestCase(TransactionTestCase):
|
|||
|
||||
def test_cursor_executemany_with_iterator(self):
|
||||
# Test executemany accepts iterators #10320
|
||||
args = iter((i, i ** 2) for i in range(-3, 2))
|
||||
args = ((i, i ** 2) for i in range(-3, 2))
|
||||
self.create_squares_with_executemany(args)
|
||||
self.assertEqual(Square.objects.count(), 5)
|
||||
|
||||
args = iter((i, i ** 2) for i in range(3, 7))
|
||||
args = ((i, i ** 2) for i in range(3, 7))
|
||||
with override_settings(DEBUG=True):
|
||||
# same test for DebugCursorWrapper
|
||||
self.create_squares_with_executemany(args)
|
||||
|
@ -278,11 +278,11 @@ class BackendTestCase(TransactionTestCase):
|
|||
|
||||
@skipUnlessDBFeature('supports_paramstyle_pyformat')
|
||||
def test_cursor_executemany_with_pyformat_iterator(self):
|
||||
args = iter({'root': i, 'square': i ** 2} for i in range(-3, 2))
|
||||
args = ({'root': i, 'square': i ** 2} for i in range(-3, 2))
|
||||
self.create_squares(args, 'pyformat', multiple=True)
|
||||
self.assertEqual(Square.objects.count(), 5)
|
||||
|
||||
args = iter({'root': i, 'square': i ** 2} for i in range(3, 7))
|
||||
args = ({'root': i, 'square': i ** 2} for i in range(3, 7))
|
||||
with override_settings(DEBUG=True):
|
||||
# same test for DebugCursorWrapper
|
||||
self.create_squares(args, 'pyformat', multiple=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue