Skip to content

Commit

Permalink
fix: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
da1suk8 committed Nov 8, 2023
1 parent 694f741 commit f97f4d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/std/src/results/response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ mod tests {
let event2 =
Event::new("act").add_attributes(vec![attr("name", "burn"), attr("amount", "21")]);
let expected = Response::<Empty>::new().add_events(vec![event1, event2]);
let actual = Response::<Empty>::new().add_events(vec![act1, act2]);
let actual: Response = Response::<Empty>::new().add_event(act1).add_event(act2);
assert_eq!(actual, expected);
}

Expand Down

0 comments on commit f97f4d1

Please sign in to comment.