Skip to content

Commit

Permalink
Merge pull request #572 from input-output-hk/panic-lint-fix
Browse files Browse the repository at this point in the history
Fix a panic lint
  • Loading branch information
Mikhail Zabaluev committed Jun 8, 2021
2 parents a12e68d + be6c6bf commit f6bcb7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chain-storage/src/tests.rs
Expand Up @@ -69,7 +69,7 @@ fn tag_non_existent_block() {
let (_file, store) = prepare_store();
match store.put_tag("tip", &BlockId(0).serialize_as_vec()) {
Err(Error::BlockNotFound) => {}
err => panic!(err),
err => panic!("{:?}", err),
}
}

Expand Down

0 comments on commit f6bcb7f

Please sign in to comment.