Skip to content

Commit

Permalink
Update compiler/noirc_frontend/src/parser/parser/type_expression.rs
Browse files Browse the repository at this point in the history
Co-authored-by: jfecher <[email protected]>
  • Loading branch information
michaeljklein and jfecher authored Oct 9, 2024
1 parent b063d42 commit 59bfb4c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions compiler/noirc_frontend/src/parser/parser/type_expression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,7 @@ mod tests {
let UnresolvedTypeExpression::Constant(n, _) = expr else {
panic!("Expected constant");
};
let fourty_two = 42_u32.into();
assert_eq!(n, fourty_two);
assert_eq!(n, 42_u32.into());
}

#[test]
Expand Down

0 comments on commit 59bfb4c

Please sign in to comment.