Skip to content

Commit

Permalink
fix test actually this time
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinzwang committed Jan 27, 2025
1 parent e3bae8b commit be4bd6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/daft-algebra/src/boolean/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@ mod tests {
let expected = col("a").and(col("b")).and(
(col("c").or(col("e")))
.and(col("c").or(col("f")))
.and(col("d").or(col("e")).and(col("d").or(col("f")))),
.and(col("d").or(col("e")))
.and(col("d").or(col("f"))),
);

assert_eq!(expected, to_cnf(expr));
Expand Down

0 comments on commit be4bd6b

Please sign in to comment.