summaryrefslogtreecommitdiff
path: root/test/sql/test_operators.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-08-16 14:07:33 -0400
committerMike Bayer <mike_mp@zzzcomputing.com>2012-08-16 14:07:33 -0400
commit079f5a282b4b37ff2a2a7172aa289eff49509f17 (patch)
treebcf53016b1dc93546f3e0eb22a11004f4d2a452c /test/sql/test_operators.py
parentfd4ac5b3171dacf2efba31c520c546e2422fba36 (diff)
downloadsqlalchemy-079f5a282b4b37ff2a2a7172aa289eff49509f17.tar.gz
-we move all the invocation of "_adapt_expression" into TypeEngine.Comparator. at this point
the split of operator stuff is getting awkward and we might want to move _DefaultComparator.
Diffstat (limited to 'test/sql/test_operators.py')
-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 b369dfc11..c38f95a01 100644
--- a/test/sql/test_operators.py
+++ b/test/sql/test_operators.py
@@ -23,7 +23,7 @@ class DefaultColumnComparatorTest(fixtures.TestBase):
left = column('left')
right = column('right')
- assert cc.operate(left, operator, right).compare(
+ assert cc.operate(left, operator, right, result_type=Integer).compare(
BinaryExpression(left, right, operator)
)