summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authormike bayer <mike_mp@zzzcomputing.com>2020-03-30 01:47:50 +0000
committerGerrit Code Review <gerrit@bbpush.zzzcomputing.com>2020-03-30 01:47:50 +0000
commit7b42cb5669578cec014ece650ce3d2c6051400f0 (patch)
treeba9ece94eef906857d02309243b9f820e6eab03c /test/sql
parent8e857e3f6beecf7510f741428d8d0ba24f5cb71b (diff)
parent4bd4b483e07bd81dd2417aa2a3e737fedb7ee5b4 (diff)
downloadsqlalchemy-7b42cb5669578cec014ece650ce3d2c6051400f0.tar.gz
Merge "Remove support for python 3.4"
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_metadata.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/sql/test_metadata.py b/test/sql/test_metadata.py
index 8ef272a9e..afe5bdb59 100644
--- a/test/sql/test_metadata.py
+++ b/test/sql/test_metadata.py
@@ -29,7 +29,6 @@ from sqlalchemy import TypeDecorator
from sqlalchemy import types as sqltypes
from sqlalchemy import Unicode
from sqlalchemy import UniqueConstraint
-from sqlalchemy import util
from sqlalchemy.engine import default
from sqlalchemy.schema import AddConstraint
from sqlalchemy.schema import CreateIndex
@@ -4164,17 +4163,6 @@ class DialectKWArgTest(fixtures.TestBase):
},
) # still populates
- def test_runs_safekwarg(self):
-
- with mock.patch(
- "sqlalchemy.util.safe_kwarg", lambda arg: "goofy_%s" % arg
- ):
- with self._fixture():
- idx = Index("a", "b")
- idx.kwargs[util.u("participating_x")] = 7
-
- eq_(list(idx.dialect_kwargs), ["goofy_participating_x"])
-
def test_combined(self):
with self._fixture():
idx = Index(