Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
lisicky committed Nov 28, 2023
1 parent 82672d4 commit 6a58860
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rust/src/tests/builders/tx_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3101,7 +3101,7 @@ fn assert_mint_asset(mint: &Mint, policy_id: &PolicyID) {
let result_asset = mint.get(&policy_id).unwrap();
assert_eq!(result_asset.len(), 1);
assert_eq!(
result_asset.get(&create_asset_name()).unwrap(),
result_asset.get(0).unwrap().get(&create_asset_name()).unwrap(),
Int::new_i32(1234)
);
}
Expand Down

0 comments on commit 6a58860

Please sign in to comment.