From 6ed0d7e3339dd14daad612f9ac6dd2f5e90ef517 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Thu, 15 Dec 2011 11:42:50 -0500 Subject: [PATCH] add a conditional here --- test/sql/test_types.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/test/sql/test_types.py b/test/sql/test_types.py index 57193a3973..1902c74c28 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -785,10 +785,11 @@ class UnicodeTest(fixtures.TestBase, AssertsExecutionResults): eq_(uni(unicodedata), unicodedata.encode('utf-8')) - @testing.fails_if( - lambda: testing.db_spec("postgresql+pg8000")(testing.db) and util.py3k, - "pg8000 appropriately does not accept 'bytes' for a VARCHAR column." - ) + # Py3K + #@testing.fails_if( + # lambda: testing.db_spec("postgresql+pg8000")(testing.db), + # "pg8000 appropriately does not accept 'bytes' for a VARCHAR column." + # ) def test_ignoring_unicode_error(self): """checks String(unicode_error='ignore') is passed to underlying codec.""" -- 2.47.2