Remove dbg statement

This commit is contained in:
Remco Bloemen 2020-11-19 11:34:10 -08:00 committed by Crozet Sébastien
parent d49af8e8b2
commit 59f4e8a7d4
1 changed files with 0 additions and 1 deletions

View File

@ -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);