From 4bd4b483e07bd81dd2417aa2a3e737fedb7ee5b4 Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Sun, 29 Mar 2020 20:57:08 +0200 Subject: Remove support for python 3.4 Also remove no longer used compat code Change-Id: Ifda239fd84b425e43f4028cb55a5b3b8efa4dfc6 --- test/sql/test_metadata.py | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'test/sql') 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( -- cgit v1.2.1