Skip to content

Commit

Permalink
Wrong type usage
Browse files Browse the repository at this point in the history
Wrong Type (TEXT) being used in StringTest
  • Loading branch information
BY-jk authored and BY-jk committed May 30, 2014
1 parent c8873b3 commit 39bea64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/sqlalchemy/testing/suite/test_types.py
Expand Up @@ -208,7 +208,7 @@ def test_literal_quoting(self):

def test_literal_backslashes(self):
data = r'backslash one \ backslash two \\ end'
self._literal_round_trip(Text, [data], [data])
self._literal_round_trip(String(40), [data], [data])


class _DateFixture(_LiteralRoundTripFixture):
Expand Down

0 comments on commit 39bea64

Please sign in to comment.