From b48e0147ab03e267f01aa7270172905abe0867df Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Sat, 25 Aug 2012 20:08:52 +0000 Subject: - refine oracle returning some more to use purely positional approach --- test/dialect/test_oracle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/dialect') diff --git a/test/dialect/test_oracle.py b/test/dialect/test_oracle.py index 0348cd137..943cffb48 100644 --- a/test/dialect/test_oracle.py +++ b/test/dialect/test_oracle.py @@ -460,8 +460,8 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): compiled = stmt.compile(dialect=oracle.dialect()) eq_( compiled.result_map, - {'c3': ('c3', (t1.c.c3, 'c3', 'c3'), t1.c.c3.type), - 'lower': ('lower', (), fn.type)} + {'ret_1': ('ret_1', (t1.c.c3, 'c3', 'c3'), t1.c.c3.type), + 'ret_0': ('ret_0', (fn, 'lower', None), fn.type)} ) self.assert_compile( -- cgit v1.2.1