mirror of
https://github.com/python/cpython.git
synced 2025-08-30 13:38:43 +00:00
convert old fail* assertions to assert*
This commit is contained in:
parent
98d23f2e06
commit
c9c0f201fe
275 changed files with 4540 additions and 4540 deletions
|
@ -67,14 +67,14 @@ class NormalizationTest(unittest.TestCase):
|
|||
continue
|
||||
|
||||
# Perform tests
|
||||
self.failUnless(c2 == NFC(c1) == NFC(c2) == NFC(c3), line)
|
||||
self.failUnless(c4 == NFC(c4) == NFC(c5), line)
|
||||
self.failUnless(c3 == NFD(c1) == NFD(c2) == NFD(c3), line)
|
||||
self.failUnless(c5 == NFD(c4) == NFD(c5), line)
|
||||
self.failUnless(c4 == NFKC(c1) == NFKC(c2) == \
|
||||
self.assertTrue(c2 == NFC(c1) == NFC(c2) == NFC(c3), line)
|
||||
self.assertTrue(c4 == NFC(c4) == NFC(c5), line)
|
||||
self.assertTrue(c3 == NFD(c1) == NFD(c2) == NFD(c3), line)
|
||||
self.assertTrue(c5 == NFD(c4) == NFD(c5), line)
|
||||
self.assertTrue(c4 == NFKC(c1) == NFKC(c2) == \
|
||||
NFKC(c3) == NFKC(c4) == NFKC(c5),
|
||||
line)
|
||||
self.failUnless(c5 == NFKD(c1) == NFKD(c2) == \
|
||||
self.assertTrue(c5 == NFKD(c1) == NFKD(c2) == \
|
||||
NFKD(c3) == NFKD(c4) == NFKD(c5),
|
||||
line)
|
||||
|
||||
|
@ -87,7 +87,7 @@ class NormalizationTest(unittest.TestCase):
|
|||
X = chr(c)
|
||||
if X in part1_data:
|
||||
continue
|
||||
self.failUnless(X == NFC(X) == NFD(X) == NFKC(X) == NFKD(X), c)
|
||||
self.assertTrue(X == NFC(X) == NFD(X) == NFKC(X) == NFKD(X), c)
|
||||
|
||||
def test_bug_834676(self):
|
||||
# Check for bug 834676
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue