Skip to content

Commit

Permalink
Update substrate/frame/revive/src/tests.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Theißen <[email protected]>
  • Loading branch information
xermicus and athei authored Dec 12, 2024
1 parent d04db65 commit bad22f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion substrate/frame/revive/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4358,7 +4358,7 @@ fn call_data_size_api_works() {
assert_eq!(received.flags, ReturnFlags::empty());
assert_eq!(U256::from_little_endian(&received.data), U256::zero());

let received = builder::bare_call(addr).data(vec![1; 256]).build().result.unwrap();
let received = builder::bare_call(addr).data(vec![1; 256]).build_and_unwrap_result();
assert_eq!(received.flags, ReturnFlags::empty());
assert_eq!(U256::from_little_endian(&received.data), U256::from(256));
});
Expand Down

0 comments on commit bad22f5

Please sign in to comment.