Skip to content

Commit

Permalink
Merge pull request #40 from fitzgen/remove-dbg
Browse files Browse the repository at this point in the history
Remove leftover `dbg!` from debugging
  • Loading branch information
fitzgen authored Nov 4, 2019
2 parents d261433 + 3e6ee5c commit 96841a6
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 96841a6

Please sign in to comment.