[Python-checkins] [2.7] bpo-34031: fix incorrect usage of self.fail in two tests (GH-8091) (#8225)

Tal Einat webhook-mailer at python.org
Tue Jul 10 06:28:13 EDT 2018


https://github.com/python/cpython/commit/6f036bb67d5a20c86c29ea5aeace563e3751baab
commit: 6f036bb67d5a20c86c29ea5aeace563e3751baab
branch: 2.7
author: Tal Einat <taleinat+github at gmail.com>
committer: GitHub <noreply at github.com>
date: 2018-07-10T13:28:09+03:00
summary:

[2.7] bpo-34031: fix incorrect usage of self.fail in two tests (GH-8091) (#8225)

Actually just one fix on the 2.7 branch.

Contributed by Bradley Laney.

(cherry picked from commit 6b490b5db40fc29588e8e6cc23bb89c4fed74ad5)

files:
M Lib/test/test_file.py

diff --git a/Lib/test/test_file.py b/Lib/test/test_file.py
index 57e640d33641..6bfc4e63e7bb 100644
--- a/Lib/test/test_file.py
+++ b/Lib/test/test_file.py
@@ -247,8 +247,7 @@ def testIteration(self):
         # Test for appropriate errors mixing read* and iteration
         for methodname, args in methods:
             f = self.open(TESTFN, 'rb')
-            if next(f) != filler:
-                self.fail, "Broken testfile"
+            self.assertEqual(next(f), filler)
             meth = getattr(f, methodname)
             meth(*args)  # This simply shouldn't fail
             f.close()



More information about the Python-checkins mailing list