From 1854dd194ee26c65da8da0d91da7f79b24af4dcb Mon Sep 17 00:00:00 2001 From: Sebastian Berg Date: Fri, 28 Jun 2024 12:53:35 +0200 Subject: [PATCH] MAINT: Remove accidental debug print from new tests --- tests/test_doctestplus.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_doctestplus.py b/tests/test_doctestplus.py index 414d24a..9d381dc 100644 --- a/tests/test_doctestplus.py +++ b/tests/test_doctestplus.py @@ -1459,9 +1459,6 @@ def f(): + 3 """) captured = capsys.readouterr() - print(captured.out) - print("====") - print(diff) assert diff in captured.out testdir.inline_run(p, "--doctest-plus-generate-diff=overwrite")