]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Added missing text_type requirement to TextTest
authorStefan Reich <stefan.reich@exasol.com>
Wed, 26 Mar 2014 15:04:23 +0000 (16:04 +0100)
committerStefan Reich <stefan.reich@exasol.com>
Wed, 26 Mar 2014 15:04:23 +0000 (16:04 +0100)
lib/sqlalchemy/testing/suite/test_types.py

index e6de6e06c8426bba070dd3c6ea772581c4009f64..02461a1d7522319861c39c0bb4ec977a97e50b1b 100644 (file)
@@ -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,