Skip to content

Commit

Permalink
chore: Remove dbg! printing (#175)
Browse files Browse the repository at this point in the history
Ends up spamming the test log quite a bit
  • Loading branch information
Marwes committed Mar 27, 2021
1 parent 02b1c88 commit 0f71a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/runtime.rs
Expand Up @@ -962,7 +962,7 @@ pub fn assert_snapshot(

// if the snapshot matches we're done.
if let Some(ref old_snapshot) = old {
if dbg!(old_snapshot.contents()) == dbg!(new.contents()) {
if old_snapshot.contents() == new.contents() {
// let's just make sure there are no more pending files lingering
// around.
if let Some(ref snapshot_file) = snapshot_file {
Expand Down

0 comments on commit 0f71a8c

Please sign in to comment.