From 8833a6738a3bd3ee43ca5392a770bd76349563b4 Mon Sep 17 00:00:00 2001 From: Chris Waldon Date: Thu, 17 Mar 2022 10:09:53 -0400 Subject: [PATCH] widget: drop debug prints from tests This commit removes some lingering editor debug prints from the test code. Signed-off-by: Chris Waldon --- widget/editor_test.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/widget/editor_test.go b/widget/editor_test.go index 4f23ff2c..cec9bc9b 100644 --- a/widget/editor_test.go +++ b/widget/editor_test.go @@ -824,8 +824,6 @@ g 2 4 6 8 g {6, 10, "6 8 ", screenPos{Y: 0, X: 6}, screenPos{Y: 1, X: 2}}, {41, 66, " 6 8 d\ne 2 4 6 8 e\nf 2 4 ", screenPos{Y: 6, X: 5}, screenPos{Y: 10, X: 6}}, } { - // printLines(e) - gtx.Constraints = layout.Exact(image.Pt(100, 100)) if got := selected(tst.start, tst.end); got != tst.selection { t.Errorf("Test %d pt1: Expected %q, got %q", n, tst.selection, got) @@ -847,8 +845,6 @@ g 2 4 6 8 g tst.startPos, tst.endPos) continue } - - // printLines(e) } }