diff options
-rw-r--r-- | Lib/test/test_pdb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 4ab3d4d..5c1a37c 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -57,7 +57,7 @@ class PdbTestCase(unittest.TestCase): """ bar = """ def bar(): - print('1') + pass """ with open('bar.py', 'w') as f: f.write(textwrap.dedent(bar)) |