Kaydet (Commit) 143fe05d authored tarafından Berker Peksag's avatar Berker Peksag

Issue #21445: Pass exception messages correctly to assertTrue in

the FileCompareTestCase.test_matching test.

Patch by Steven Barker.
üst cd3aacf5
...@@ -27,13 +27,13 @@ class FileCompareTestCase(unittest.TestCase): ...@@ -27,13 +27,13 @@ class FileCompareTestCase(unittest.TestCase):
os.unlink(self.name_diff) os.unlink(self.name_diff)
def test_matching(self): def test_matching(self):
self.assertTrue(filecmp.cmp(self.name, self.name_same), self.assertTrue(filecmp.cmp(self.name, self.name),
"Comparing file to itself fails")
self.assertTrue(filecmp.cmp(self.name, self.name_same, shallow=False),
"Comparing file to itself fails") "Comparing file to itself fails")
self.assertTrue(filecmp.cmp(self.name, self.name, shallow=False), self.assertTrue(filecmp.cmp(self.name, self.name, shallow=False),
"Comparing file to itself fails")
self.assertTrue(filecmp.cmp(self.name, self.name_same),
"Comparing file to identical file fails") "Comparing file to identical file fails")
self.assertTrue(filecmp.cmp(self.name, self.name), self.assertTrue(filecmp.cmp(self.name, self.name_same, shallow=False),
"Comparing file to identical file fails") "Comparing file to identical file fails")
def test_different(self): def test_different(self):
......
...@@ -78,6 +78,7 @@ Michael J. Barber ...@@ -78,6 +78,7 @@ Michael J. Barber
Daniel Barclay Daniel Barclay
Nicolas Bareil Nicolas Bareil
Chris Barker Chris Barker
Steven Barker
Anton Barkovsky Anton Barkovsky
Nick Barnes Nick Barnes
Quentin Barnes Quentin Barnes
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment