Skip to content

Commit

Permalink
Remove leftover dbg! from debugging
Browse files Browse the repository at this point in the history
Woops!
  • Loading branch information
fitzgen committed Nov 4, 2019
1 parent d261433 commit 3e6ee5c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tests/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ fn test_reset() {
let last_chunk = b.iter_allocated_chunks().last().unwrap();
let start = last_chunk.as_ptr() as usize;
let end = start + last_chunk.len();
dbg!((start, end));
b.reset();
assert_eq!(end - mem::size_of::<u64>(), b.alloc(0u64) as *const u64 as usize);
assert_eq!(b.iter_allocated_chunks().count(), 1);
Expand Down

0 comments on commit 3e6ee5c

Please sign in to comment.