mirror of https://github.com/python/cpython
Issue #16824: Fix a failure guard in the never reached in the normal test execution code in test_pep380.
This commit is contained in:
parent
0dc5ab41f0
commit
5da57027ef
|
@ -519,7 +519,7 @@ class TestPEP380Operation(unittest.TestCase):
|
||||||
next(gi)
|
next(gi)
|
||||||
for x in range(3):
|
for x in range(3):
|
||||||
y = gi.send(42)
|
y = gi.send(42)
|
||||||
trace.append("Should not have yielded:", y)
|
trace.append("Should not have yielded: %s" % (y,))
|
||||||
except AttributeError as e:
|
except AttributeError as e:
|
||||||
self.assertIn("send", e.args[0])
|
self.assertIn("send", e.args[0])
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in New Issue