From: Philip Jenvey Date: Fri, 11 Sep 2009 22:51:25 +0000 (+0000) Subject: update per new Binary str handling X-Git-Tag: rel_0_6beta1~292 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f87ca83ecff8e098e0b1e1e6285f3ff2f6269d8;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git update per new Binary str handling --- 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):