diff options
| author | mike bayer <mike_mp@zzzcomputing.com> | 2018-08-01 17:39:58 -0400 |
|---|---|---|
| committer | Gerrit Code Review <gerrit@ci.zzzcomputing.com> | 2018-08-01 17:39:58 -0400 |
| commit | 0fc34a113989cfd284837363a7a55dc2c8aadeab (patch) | |
| tree | 164d3412350d460d956528efb1fdf1b14497cfe8 /test/sql | |
| parent | 85dd7668530612e2cf7de7f575d68fc7c683a988 (diff) | |
| parent | a51b0528d3dca59e655e4d19b50bb271015f8196 (diff) | |
| download | sqlalchemy-0fc34a113989cfd284837363a7a55dc2c8aadeab.tar.gz | |
Merge "Fix collections ABC access before Python 3.8"
Diffstat (limited to 'test/sql')
| -rw-r--r-- | test/sql/test_operators.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sql/test_operators.py b/test/sql/test_operators.py index f5446a856..f4b3cf584 100644 --- a/test/sql/test_operators.py +++ b/test/sql/test_operators.py @@ -636,7 +636,7 @@ class ExtensionOperatorTest(fixtures.TestBase, testing.AssertsCompiledSQL): return self.op("->")(index) col = Column('x', MyType()) - assert not isinstance(col, collections.Iterable) + assert not isinstance(col, util.collections_abc.Iterable) def test_lshift(self): class MyType(UserDefinedType): |
