summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/suite/test_rowcount.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/suite/test_rowcount.py')
-rw-r--r--lib/sqlalchemy/testing/suite/test_rowcount.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_rowcount.py b/lib/sqlalchemy/testing/suite/test_rowcount.py
index b7d4b7452..8e19a24a8 100644
--- a/lib/sqlalchemy/testing/suite/test_rowcount.py
+++ b/lib/sqlalchemy/testing/suite/test_rowcount.py
@@ -89,8 +89,13 @@ class RowCountTest(fixtures.TablesTest):
eq_(r.rowcount, 3)
@testing.requires.update_returning
- @testing.requires.sane_rowcount_w_returning
def test_update_rowcount_return_defaults(self, connection):
+ """note this test should succeed for all RETURNING backends
+ as of 2.0. In
+ Idf28379f8705e403a3c6a937f6a798a042ef2540 we changed rowcount to use
+ len(rows) when we have implicit returning
+
+ """
employees_table = self.tables.employees
department = employees_table.c.department