From: Mike Bayer Date: Tue, 25 Jun 2019 19:33:41 +0000 (-0400) Subject: fix "sqlalchemy" typo X-Git-Tag: rel_1_0_11~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72586086ed24eb769275ba1a92a1edb73fbcfb5e;p=thirdparty%2Fsqlalchemy%2Falembic.git fix "sqlalchemy" typo Change-Id: I0c98747dfebabb2a9593a270ab599bd7575e90fd --- diff --git a/alembic/testing/fixtures.py b/alembic/testing/fixtures.py index 59be5712..62434672 100644 --- a/alembic/testing/fixtures.py +++ b/alembic/testing/fixtures.py @@ -194,7 +194,7 @@ class AlterColRoundTripFixture(object): # the type / server default compare logic might not work on older # SQLAlchemy versions as seems to be the case for SQLAlchemy 1.1 on Oracle - __requires__ = ("alter_column", "sqlachemy_12") + __requires__ = ("alter_column", "sqlalchemy_12") def setUp(self): self.conn = config.db.connect() diff --git a/alembic/testing/requirements.py b/alembic/testing/requirements.py index 55054d92..d9200a20 100644 --- a/alembic/testing/requirements.py +++ b/alembic/testing/requirements.py @@ -62,7 +62,7 @@ class SuiteRequirements(Requirements): return exclusions.closed() @property - def sqlachemy_12(self): + def sqlalchemy_12(self): return exclusions.skip_if( lambda config: not util.sqla_1216, "SQLAlchemy 1.2.16 or greater required",