test_tokenize: use self.assertEqual() instead of plain assert

This commit is contained in:
Victor Stinner 2010-11-09 01:11:31 +00:00
parent 58c0752a33
commit 92665ab8c7
1 changed files with 4 additions and 4 deletions

View File

@ -868,15 +868,15 @@ class TestDetectEncoding(TestCase):
print("# coding: %s" % encoding, file=fp) print("# coding: %s" % encoding, file=fp)
print("print('euro:\u20ac')", file=fp) print("print('euro:\u20ac')", file=fp)
with tokenize_open(filename) as fp: with tokenize_open(filename) as fp:
assert fp.encoding == encoding self.assertEqual(fp.encoding, encoding)
assert fp.mode == 'r' self.assertEqual(fp.mode, 'r')
# test BOM (no coding cookie) # test BOM (no coding cookie)
with open(filename, 'w', encoding='utf-8-sig') as fp: with open(filename, 'w', encoding='utf-8-sig') as fp:
print("print('euro:\u20ac')", file=fp) print("print('euro:\u20ac')", file=fp)
with tokenize_open(filename) as fp: with tokenize_open(filename) as fp:
assert fp.encoding == 'utf-8-sig' self.assertEqual(fp.encoding, 'utf-8-sig')
assert fp.mode == 'r' self.assertEqual(fp.mode, 'r')
class TestTokenize(TestCase): class TestTokenize(TestCase):