summaryrefslogtreecommitdiff
path: root/test/dialect/test_postgresql.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/test_postgresql.py')
-rw-r--r--test/dialect/test_postgresql.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/dialect/test_postgresql.py b/test/dialect/test_postgresql.py
index 74f6c0e55..60a10b4b4 100644
--- a/test/dialect/test_postgresql.py
+++ b/test/dialect/test_postgresql.py
@@ -242,8 +242,9 @@ class FloatCoercionTest(TablesTest, AssertsExecutionResults):
)
@classmethod
- @testing.resolve_artifact_names
def insert_data(cls):
+ data_table = cls.tables.data_table
+
data_table.insert().execute(
{'data':3},
{'data':5},
@@ -257,8 +258,9 @@ class FloatCoercionTest(TablesTest, AssertsExecutionResults):
{'data':9},
)
- @testing.resolve_artifact_names
def test_float_coercion(self):
+ data_table = self.tables.data_table
+
for type_, result in [
(Numeric, decimal.Decimal('140.381230939')),
(Float, 140.381230939),