We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80834ed commit a832e0eCopy full SHA for a832e0e
1 file changed
Lib/test/test_pdb.py
@@ -4592,7 +4592,7 @@ def test_async_break(self):
4592
import asyncio
4593
4594
async def main():
4595
- test_str = "test break"
+ pass
4596
4597
asyncio.run(main())
4598
"""
@@ -4603,7 +4603,7 @@ async def main():
4603
4604
stdout, stderr = self.run_pdb_script(script, commands)
4605
self.assertRegex(stdout, r"Breakpoint 1 at .*main\.py:5")
4606
- self.assertIn("test break", stdout)
+ self.assertIn("pass", stdout)
4607
4608
4609
class ChecklineTests(unittest.TestCase):
0 commit comments