Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Apr 22, 2024
1 parent 1cc33f6 commit f615fec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/katana/executor/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ mod tests {
l2_to_l1_messages: vec![OrderedL2ToL1Message {
order: 0,
from_address: felt!("0x111").into(),
to_address: felt!("0x200").into(),
to_address: felt!("0x200"),
payload: vec![1u8.into()],
}],
..Default::default()
Expand All @@ -205,13 +205,13 @@ mod tests {
OrderedL2ToL1Message {
order: 0,
from_address: felt!("0x100").into(),
to_address: felt!("0x200").into(),
to_address: felt!("0x200"),
payload: vec![1u8.into()],
},
OrderedL2ToL1Message {
order: 1,
from_address: felt!("0x100").into(),
to_address: felt!("0x201").into(),
to_address: felt!("0x201"),
payload: vec![2u8.into()],
},
],
Expand Down

0 comments on commit f615fec

Please sign in to comment.