Skip to content

Commit dd587a5

Browse files
committed
chore: fix lint
1 parent 2ac244a commit dd587a5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: crates/cheatcodes/src/test/revert_handlers.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ fn handle_revert(
100100
expected_reason = &expected_reason[8..];
101101
}
102102

103-
if actual_revert == expected_reason
104-
|| (is_cheatcode && memchr::memmem::find(&actual_revert, expected_reason).is_some())
103+
if actual_revert == expected_reason ||
104+
(is_cheatcode && memchr::memmem::find(&actual_revert, expected_reason).is_some())
105105
{
106106
Ok(())
107107
} else {

0 commit comments

Comments
 (0)