From cc8ecaadc20da0070b6e57076d19fcbd7a589423 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 8 Jun 2020 12:09:49 +0200 Subject: [PATCH] Remove superfluous printing from many_boxes_long_lived test --- tests/heap_allocation.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/heap_allocation.rs b/tests/heap_allocation.rs index 94d1db32..bcdeac65 100644 --- a/tests/heap_allocation.rs +++ b/tests/heap_allocation.rs @@ -56,14 +56,12 @@ fn many_boxes() { #[test_case] fn many_boxes_long_lived() { - serial_print!("many_boxes_long_lived... "); let long_lived = Box::new(1); // new for i in 0..HEAP_SIZE { let x = Box::new(i); assert_eq!(*x, i); } assert_eq!(*long_lived, 1); // new - serial_println!("[ok]"); } #[panic_handler]