summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Reich <stefan.reich@exasol.com>2014-03-26 16:04:23 +0100
committerStefan Reich <stefan.reich@exasol.com>2014-03-26 16:04:23 +0100
commiteb94838c72f543905f3667d1c7087a54df58c78a (patch)
tree4acbb1120943b115cb69a3dd934cd1f6eff1997d
parentf6614aed6604d28387fc118ae70b20a2b058f571 (diff)
downloadsqlalchemy-pr/82.tar.gz
Added missing text_type requirement to TextTestpr/82
-rw-r--r--lib/sqlalchemy/testing/suite/test_types.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_types.py b/lib/sqlalchemy/testing/suite/test_types.py
index e6de6e06c..02461a1d7 100644
--- a/lib/sqlalchemy/testing/suite/test_types.py
+++ b/lib/sqlalchemy/testing/suite/test_types.py
@@ -107,6 +107,8 @@ class UnicodeTextTest(_UnicodeFixture, fixtures.TablesTest):
self._test_empty_strings()
class TextTest(fixtures.TablesTest):
+ __requires__ = 'text_type',
+
@classmethod
def define_tables(cls, metadata):
Table('text_table', metadata,