From fb12d2a612dc00dbc0a9f472b0cc6b305e00caf0 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 27 May 2019 03:27:37 +0200 Subject: [PATCH] test_enter_leave_pdb_hooks_are_called: remove child.sendeof() --- testing/test_pdb.py | 1 - 1 file changed, 1 deletion(-) diff --git a/testing/test_pdb.py b/testing/test_pdb.py index 119c2542d..0db3593d8 100644 --- a/testing/test_pdb.py +++ b/testing/test_pdb.py @@ -797,7 +797,6 @@ class TestPDB(object): rest = child.read().decode("utf8") assert "leave_pdb_hook" in rest assert "1 failed" in rest - child.sendeof() self.flush(child) def test_pdb_custom_cls(self, testdir, custom_pdb_calls):