Skip to content

Commit

Permalink
test(prt-rollups): fix persistent-state-access tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenctw committed Jan 13, 2025
1 parent 416f819 commit d3a2272
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -543,8 +543,8 @@ mod tests {
"machine state hash shouldn't exist"
);
assert!(
access.machine_state_hashes(0).is_err(),
"machine state hash shouldn't exist"
access.machine_state_hashes(0).is_ok_and(|x| x.is_empty()),
"machine state hashes shouldn't exist"
);

let machine_state_hash_1 = vec![1, 2, 3, 4, 5];
Expand Down

0 comments on commit d3a2272

Please sign in to comment.