Skip to content

Commit 03fde99

Browse files
author
jianjian.xie
committed
fix format
1 parent 5bf895d commit 03fde99

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rust/lance-graph/src/datafusion_planner/expression.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,10 @@ mod tests {
491491
// Arithmetic expressions should now return a BinaryExpr with Plus operator
492492
assert!(s.contains("BinaryExpr"), "Should be a BinaryExpr");
493493
assert!(s.contains("Plus"), "Should contain Plus operator");
494-
assert!(s.contains("p__age"), "Should contain the left operand column");
494+
assert!(
495+
s.contains("p__age"),
496+
"Should contain the left operand column"
497+
);
495498
}
496499

497500
#[test]

0 commit comments

Comments
 (0)