From 59f4e8a7d4495746b8f19c4d570df32c1885986a Mon Sep 17 00:00:00 2001 From: Remco Bloemen Date: Thu, 19 Nov 2020 11:34:10 -0800 Subject: [PATCH] Remove dbg statement --- tests/core/matrix.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/core/matrix.rs b/tests/core/matrix.rs index 80ab3554..14eaeacd 100644 --- a/tests/core/matrix.rs +++ b/tests/core/matrix.rs @@ -11,7 +11,6 @@ use na::{ #[test] fn iter() { let a = Matrix2x3::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0); - dbg!(a); let mut it = a.iter(); assert_eq!(*it.next().unwrap(), 1.0);