From 46f863352a6d9f65d7eb1965d62b4c0beade338a Mon Sep 17 00:00:00 2001 From: Timofey <5527315+epanchee@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:48:47 +0300 Subject: [PATCH] fix test --- contracts/voting_escrow/tests/voting_escrow_integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/voting_escrow/tests/voting_escrow_integration.rs b/contracts/voting_escrow/tests/voting_escrow_integration.rs index bb2d27c..6478314 100644 --- a/contracts/voting_escrow/tests/voting_escrow_integration.rs +++ b/contracts/voting_escrow/tests/voting_escrow_integration.rs @@ -284,7 +284,7 @@ fn test_general_queries() { let user_vp = helper.user_vp(&user1, None).unwrap(); assert_eq!(user_vp, cw20_bal_resp.balance); - let lock_info = helper.lock_info(&user1).unwrap(); + let lock_info = helper.lock_info(&user1, None).unwrap(); let users_list: Vec<(Addr, LockInfoResponse)> = helper .app