Skip to content

Commit 1c648b8

Browse files
committed
chore: update tests
Signed-off-by: Ion Koutsouris <[email protected]>
1 parent 79907fd commit 1c648b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

crates/core/src/delta_datafusion/expr.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ mod test {
730730
},
731731
simple!(
732732
Expr::Column(Column::from_qualified_name_ignore_case("Value3")).eq(lit(3_i64)),
733-
"Value3 = 3".to_string()
733+
"\"Value3\" = 3".to_string()
734734
),
735735
simple!(col("active").is_true(), "active IS TRUE".to_string()),
736736
simple!(col("active"), "active".to_string()),

crates/core/src/operations/constraints.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ mod tests {
394394
let version = table.version();
395395
assert_eq!(version, Some(1));
396396

397-
let expected_expr = "vAlue < 1000"; // spellchecker:disable-line
397+
let expected_expr = "\"vAlue\" < 1000"; // spellchecker:disable-line
398398
assert_eq!(get_constraint_op_params(&mut table).await, expected_expr);
399399
assert_eq!(
400400
get_constraint(&table, "delta.constraints.valid_values"),

0 commit comments

Comments
 (0)