Silence DeprecationWarnings in test_unicode.

This commit is contained in:
Ezio Melotti 2013-02-20 23:56:01 +02:00
parent 795c10b3b6
commit 51e243f22e
1 changed files with 10 additions and 8 deletions

View File

@ -2172,6 +2172,8 @@ class UnicodeTest(string_tests.CommonTest,
# generate a fresh string (refcount=1)
text = 'a' * length + 'b'
with support.check_warnings(('unicode_internal codec has been '
'deprecated', DeprecationWarning)):
# fill wstr internal field
abc = text.encode('unicode_internal')
self.assertEqual(abc.decode('unicode_internal'), text)