Skip to content

Commit

Permalink
🔨 Fix root-const test
Browse files Browse the repository at this point in the history
  • Loading branch information
Philogy committed Oct 18, 2024
1 parent f2455ee commit ff69c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/ast/src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ mod tests {
vec![Keyword("define"), Ident("constant"), Ident("TEST"), Punct('='), Hex("0x1")],
ast::RootSection::Definition(ast::Definition::Constant {
name: ("TEST", span),
value: uint!(1_U256)
expr: (ast::ConstExpr::Value(uint!(1_U256)), span)
})
);
}
Expand Down

0 comments on commit ff69c52

Please sign in to comment.