Issue #16824: Fix a failure guard in the never reached in the normal test execution code in test_pep380.

This commit is contained in:
Serhiy Storchaka 2012-12-31 11:31:41 +02:00
parent 0dc5ab41f0
commit 5da57027ef
1 changed files with 1 additions and 1 deletions

View File

@ -519,7 +519,7 @@ class TestPEP380Operation(unittest.TestCase):
next(gi)
for x in range(3):
y = gi.send(42)
trace.append("Should not have yielded:", y)
trace.append("Should not have yielded: %s" % (y,))
except AttributeError as e:
self.assertIn("send", e.args[0])
else: