diff options
Diffstat (limited to 'distutils2/tests/test_command_check.py')
| -rw-r--r-- | distutils2/tests/test_command_check.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/distutils2/tests/test_command_check.py b/distutils2/tests/test_command_check.py index 7cdd2c1..3bd55c5 100644 --- a/distutils2/tests/test_command_check.py +++ b/distutils2/tests/test_command_check.py @@ -55,11 +55,11 @@ class CheckTestCase(support.LoggingCatcher, self.assertEqual(self.get_logs(), []) # now a test with non-ASCII characters - metadata = {'home_page': u'xxx', 'author': u'\u00c9ric', - 'author_email': u'xxx', 'name': u'xxx', - 'version': u'1.2', - 'summary': u'Something about esszet \u00df', - 'description': u'More things about esszet \u00df'} + metadata = {'home_page': 'xxx', 'author': '\u00c9ric', + 'author_email': 'xxx', 'name': 'xxx', + 'version': '1.2', + 'summary': 'Something about esszet \u00df', + 'description': 'More things about esszet \u00df'} self._run(metadata) self.assertEqual(self.get_logs(), []) @@ -119,7 +119,7 @@ class CheckTestCase(support.LoggingCatcher, self.loghandler.flush() # and non-broken rest, including a non-ASCII character to test #12114 - dist = self.create_dist(description=u'title\n=====\n\ntest \u00df')[1] + dist = self.create_dist(description='title\n=====\n\ntest \u00df')[1] cmd = check(dist) cmd.check_restructuredtext() self.assertEqual(self.get_logs(), []) |
