From 017e78261b6132fd81f509545207c56470f73112 Mon Sep 17 00:00:00 2001 From: nils <48135649+Nilstrieb@users.noreply.github.com> Date: Tue, 11 Apr 2023 10:40:19 +0200 Subject: [PATCH] remove debug prints --- testsuite/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/testsuite/src/lib.rs b/testsuite/src/lib.rs index 2c32711..83d65ab 100644 --- a/testsuite/src/lib.rs +++ b/testsuite/src/lib.rs @@ -114,8 +114,6 @@ fn setup_scripts(start_roots: &[String], proj_dir: &Path) -> Result<()> { .collect::>() .join(", "); - dbg!(&expected_roots); - write!( BufWriter::new(&file), r#"#!/usr/bin/env bash @@ -176,7 +174,6 @@ fn build(path: &Path) -> Result<()> { .context("canonicalizing target/debug/cargo-minimize")?; let start_roots = get_roots(&proj_dir).context("getting initial MINIMIZE-ROOTs")?; - eprintln!("Roots: {:?}", start_roots); setup_scripts(&start_roots, &proj_dir).context("setting up scripts")?;