Skip to content

Commit

Permalink
util(tests): fix extension::tests::check_data::check_data
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanson committed Mar 28, 2023
1 parent 66708d6 commit 0a4ee69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions util/types/src/extension/tests/check_data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ fn test_check_data_via_transaction(

#[test]
fn check_data() {
for ht in 0..3 {
for ht in 0..4 {
for dt in 0..2 {
let ht_right = ht.into();
let dt_right = dt.into();
let ht_error = 3.into();
let ht_error = 4.into();
let dt_error = 2.into();

let script_right = packed::Script::new_builder().hash_type(ht_right).build();
Expand Down

0 comments on commit 0a4ee69

Please sign in to comment.