summaryrefslogtreecommitdiff
path: root/test/sql
diff options
context:
space:
mode:
Diffstat (limited to 'test/sql')
-rw-r--r--test/sql/test_operators.py2
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):