Skip to content

Commit a832e0e

Browse files
committed
fix test
1 parent 80834ed commit a832e0e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_pdb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4592,7 +4592,7 @@ def test_async_break(self):
45924592
import asyncio
45934593
45944594
async def main():
4595-
test_str = "test break"
4595+
pass
45964596
45974597
asyncio.run(main())
45984598
"""
@@ -4603,7 +4603,7 @@ async def main():
46034603
"""
46044604
stdout, stderr = self.run_pdb_script(script, commands)
46054605
self.assertRegex(stdout, r"Breakpoint 1 at .*main\.py:5")
4606-
self.assertIn("test break", stdout)
4606+
self.assertIn("pass", stdout)
46074607

46084608

46094609
class ChecklineTests(unittest.TestCase):

0 commit comments

Comments
 (0)