summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2012-11-12 14:37:03 -0500
committerMike Bayer <mike_mp@zzzcomputing.com>2012-11-12 14:37:03 -0500
commit37c943233a4b01428cf4b67d766d2685309ab0e8 (patch)
tree560708d00dfdee19d89f7a3ea8994258cb771abd
parent12df8a9901256c9de7f5917296ddcb703445a52b (diff)
downloadsqlalchemy-37c943233a4b01428cf4b67d766d2685309ab0e8.tar.gz
fix some oracle-related tests, but still need to fix unhashable_types test
-rw-r--r--lib/sqlalchemy/testing/suite/test_types.py4
-rw-r--r--test/requirements.py3
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 259cccff3..74cb52c6e 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 ab37e66f6..149733559 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):