From 4e582c8e4ebbc3133e4bfa677748fc0e67207889 Mon Sep 17 00:00:00 2001 From: ysthakur <45539777+ysthakur@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:16:30 -0500 Subject: [PATCH] test: Remove print debugging from shrinker --- src/test/scala/fred/GenUtil.scala | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/test/scala/fred/GenUtil.scala b/src/test/scala/fred/GenUtil.scala index c0de3a2..431fd06 100644 --- a/src/test/scala/fred/GenUtil.scala +++ b/src/test/scala/fred/GenUtil.scala @@ -81,11 +81,6 @@ object GenUtil { if (prog.stmts.isEmpty) Stream.empty else { Shrink.shrink(prog.stmts)(Shrink.shrinkContainer) - .map { - foo => - println(s"Here ${foo.size}") - foo - } .map(stmts => prog.copy(stmts = stmts)) } }