Skip to content

Commit

Permalink
fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
Schwarzam committed Apr 22, 2024
1 parent 1eadb7d commit 8a72774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ mod parser {
assert_eq!(expr, col("dec").lt_eq(lit(-30.3)));

let expr = parse_condition("dec>4").unwrap();
assert_eq!(expr, col("dec").gt(lit(4)));
assert_eq!(expr, col("dec").gt(lit(4.0)));
}
}

0 comments on commit 8a72774

Please sign in to comment.