Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mx00s committed Nov 29, 2020
1 parent e2bd88a commit b4e666e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/ast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -352,10 +352,7 @@ mod tests {

#[test]
fn ast__valid_operation() {
let operation = Ast::from_op(
Op::Plus,
vec![Ast::from_val(1), Ast::from_var(Var::X)],
);
let operation = Ast::from_op(Op::Plus, vec![Ast::from_val(1), Ast::from_var(Var::X)]);
assert!(operation.is_ok());
}

Expand Down

0 comments on commit b4e666e

Please sign in to comment.