diff --git a/tests/regressiontests/backends/models.py b/tests/regressiontests/backends/models.py index 50a628a22e..a455f21e67 100644 --- a/tests/regressiontests/backends/models.py +++ b/tests/regressiontests/backends/models.py @@ -17,11 +17,7 @@ __test__ = {'API_TESTS': """ >>> Square.objects.order_by('root') [, , , , , , , , , , ] -#4765: executemany with params=None or params=[] does nothing ->>> cursor.executemany('INSERT INTO BACKENDS_SQUARE (ROOT, SQUARE) VALUES (%s, %s)', None) and None or None ->>> Square.objects.count() -11 - +#4765: executemany with params=[] does nothing >>> cursor.executemany('INSERT INTO BACKENDS_SQUARE (ROOT, SQUARE) VALUES (%s, %s)', []) and None or None >>> Square.objects.count() 11