From 4f87ca83ecff8e098e0b1e1e6285f3ff2f6269d8 Mon Sep 17 00:00:00 2001 From: Philip Jenvey Date: Fri, 11 Sep 2009 22:51:25 +0000 Subject: [PATCH] update per new Binary str handling --- test/dialect/test_oracle.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/dialect/test_oracle.py b/test/dialect/test_oracle.py index f8cfdf1fca..1701c72807 100644 --- a/test/dialect/test_oracle.py +++ b/test/dialect/test_oracle.py @@ -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): -- 2.47.2