summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2020-03-29 20:57:08 +0200
committerFederico Caselli <cfederico87@gmail.com>2020-03-30 00:35:33 +0200
commit4bd4b483e07bd81dd2417aa2a3e737fedb7ee5b4 (patch)
treee2ce96a7ce03236eb1839cd146d64a5553fdad69 /test/sql
parent5b6a1a98903830ac563f936ccbe1fe30d88ec77c (diff)
downloadsqlalchemy-4bd4b483e07bd81dd2417aa2a3e737fedb7ee5b4.tar.gz
Remove support for python 3.4
Also remove no longer used compat code Change-Id: Ifda239fd84b425e43f4028cb55a5b3b8efa4dfc6
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(