From: Mike Bayer Date: Mon, 12 Nov 2012 19:37:03 +0000 (-0500) Subject: fix some oracle-related tests, but still need to fix unhashable_types test X-Git-Tag: rel_0_8_0b2~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=37c943233a4b01428cf4b67d766d2685309ab0e8;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix some oracle-related tests, but still need to fix unhashable_types test --- 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):