From 37c943233a4b01428cf4b67d766d2685309ab0e8 Mon Sep 17 00:00:00 2001 From: Mike Bayer Date: Mon, 12 Nov 2012 14:37:03 -0500 Subject: [PATCH] fix some oracle-related tests, but still need to fix unhashable_types test --- lib/sqlalchemy/testing/suite/test_types.py | 4 ++-- test/requirements.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/lib/sqlalchemy/testing/suite/test_types.py b/lib/sqlalchemy/testing/suite/test_types.py index 259cccff38..74cb52c6e8 100644 --- a/lib/sqlalchemy/testing/suite/test_types.py +++ b/lib/sqlalchemy/testing/suite/test_types.py @@ -90,7 +90,7 @@ class UnicodeVarcharTest(_UnicodeFixture, fixtures.TablesTest): @requirements.empty_strings_varchar - def test_empty_strings(self): + def test_empty_strings_varchar(self): self._test_empty_strings() class UnicodeTextTest(_UnicodeFixture, fixtures.TablesTest): @@ -99,7 +99,7 @@ class UnicodeTextTest(_UnicodeFixture, fixtures.TablesTest): datatype = UnicodeText() @requirements.empty_strings_text - def test_empty_strings(self): + def test_empty_strings_text(self): self._test_empty_strings() diff --git a/test/requirements.py b/test/requirements.py index ab37e66f6a..149733559d 100644 --- a/test/requirements.py +++ b/test/requirements.py @@ -303,8 +303,7 @@ class DefaultRequirements(SuiteRequirements): """target database can persist/return an empty string with an unbounded text.""" - return fails_if("oracle", 'oracle converts empty ' - 'strings to a blank space') + return exclusions.open() @property def unicode_connections(self): -- 2.47.3