diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-15 13:25:16 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2010-12-15 13:25:16 -0500 |
| commit | 1f0e7a6120c3f97d73e6275aa71663ee5709dda5 (patch) | |
| tree | 06d99322598d89bf723880dc11dd79edc365d4d9 | |
| parent | 46ad83ed6bf475c94490a2659dcbaa0c3e5b3452 (diff) | |
| download | sqlalchemy-1f0e7a6120c3f97d73e6275aa71663ee5709dda5.tar.gz | |
- fix broken py3k block
| -rw-r--r-- | test/sql/test_types.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/sql/test_types.py b/test/sql/test_types.py index a986c622a..6c6e99580 100644 --- a/test/sql/test_types.py +++ b/test/sql/test_types.py @@ -514,13 +514,12 @@ class UnicodeTest(TestBase, AssertsExecutionResults): s = String() uni = s.dialect_impl(unicode_engine.dialect).bind_processor(unicode_engine.dialect) - # Py3K # this is not the unicode type - no warning + # Py3K #uni(b'x') #assert_raises(exc.SAWarning, uni, b'x') #assert isinstance(uni(unicodedata), bytes) # Py2K - # this is not the unicode type - no warning uni('x') assert isinstance(uni(unicodedata), str) # end Py2K |
