Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoletta committed Aug 22, 2023
1 parent 531994f commit 2aa405b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vm/src/hint_processor/builtin_hint_processor/math_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2345,10 +2345,10 @@ mod tests {
exec_scopes_ref!(),
&HashMap::from([
("MAX_LOW".to_string(), Felt252::from(-1)),
((
(
"MAX_HIGH".to_string(),
Felt252::from(-1),
))
)
])
),
Err(HintError::AssertionFailed(x)) if &(*x) == "assert ids.MAX_HIGH < 2**128 and ids.MAX_LOW < 2**128"
Expand Down Expand Up @@ -2383,10 +2383,10 @@ mod tests {
exec_scopes_ref!(),
&HashMap::from([
("MAX_LOW".to_string(), Felt252::zero()),
((
(
"MAX_HIGH".to_string(),
Felt252::zero(),
))
)
])
),
Err(HintError::AssertionFailed(x)) if &(*x) == "assert PRIME - 1 == ids.MAX_HIGH * 2**128 + ids.MAX_LOW"
Expand Down

0 comments on commit 2aa405b

Please sign in to comment.