]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
update per new Binary str handling
authorPhilip Jenvey <pjenvey@underboss.org>
Fri, 11 Sep 2009 22:51:25 +0000 (22:51 +0000)
committerPhilip Jenvey <pjenvey@underboss.org>
Fri, 11 Sep 2009 22:51:25 +0000 (22:51 +0000)
test/dialect/test_oracle.py

index f8cfdf1fcabc4e194a6afbc80564656509ecb4c0..1701c72807efda1b72502472cb99ffe3e51fddcc 100644 (file)
@@ -513,16 +513,12 @@ class BufferedColumnTest(TestBase, AssertsCompiledSQL):
 
     def test_fetch(self):
         result = binary_table.select().execute().fetchall()
-        if jython:
-            result = [(i, value.tostring()) for i, value in result]
         eq_(result, [(i, stream) for i in range(1, 11)])
 
     @testing.fails_on('+zxjdbc', 'FIXME: zxjdbc should support this')
     def test_fetch_single_arraysize(self):
         eng = testing_engine(options={'arraysize':1})
         result = eng.execute(binary_table.select()).fetchall()
-        if jython:
-            result = [(i, value.tostring()) for i, value in result]
         eq_(result, [(i, stream) for i in range(1, 11)])
 
 class SequenceTest(TestBase, AssertsCompiledSQL):