summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/suite/test_insert.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/suite/test_insert.py')
-rw-r--r--lib/sqlalchemy/testing/suite/test_insert.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_insert.py b/lib/sqlalchemy/testing/suite/test_insert.py
index b6fb597dc..3444e15c8 100644
--- a/lib/sqlalchemy/testing/suite/test_insert.py
+++ b/lib/sqlalchemy/testing/suite/test_insert.py
@@ -12,7 +12,7 @@ from ..schema import Table, Column
class LastrowidTest(fixtures.TablesTest):
run_deletes = 'each'
- __multiple__ = True
+ __backend__ = True
__requires__ = 'implements_get_lastrowid', 'autoincrement_insert'
@@ -76,7 +76,7 @@ class LastrowidTest(fixtures.TablesTest):
class InsertBehaviorTest(fixtures.TablesTest):
run_deletes = 'each'
- __multiple__ = True
+ __backend__ = True
@classmethod
def define_tables(cls, metadata):
@@ -161,7 +161,7 @@ class InsertBehaviorTest(fixtures.TablesTest):
class ReturningTest(fixtures.TablesTest):
run_create_tables = 'each'
__requires__ = 'returning', 'autoincrement_insert'
- __multiple__ = True
+ __backend__ = True
__engine_options__ = {"implicit_returning": True}