Skip to content

Commit

Permalink
chore: trying to fix the test
Browse files Browse the repository at this point in the history
  • Loading branch information
lklimek committed Nov 27, 2024
1 parent ffab273 commit 8853f64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion abci/tests/kvstore.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fn test_kvstore() {
fs::set_permissions(SOCKET, perms).expect("set perms");

let socket_uri = bind_address.to_string();
let _td = common::docker::TenderdashDocker::new("tenderdash", None, &socket_uri);
let td = common::docker::TenderdashDocker::new("tenderdash", None, &socket_uri);

let next_client = server.next_client();
tracing::debug!(?next_client, "next client");
Expand All @@ -76,6 +76,8 @@ fn test_kvstore() {
let kvstore_app = kvstore.into_inner().expect("kvstore lock is poisoned");
assert_eq!(kvstore_app.persisted_state, state_reference);
assert_eq!(kvstore_app.last_block_height, 1);

drop(td);
}

/// An example storage.
Expand Down

0 comments on commit 8853f64

Please sign in to comment.