Skip to content

Commit c7e248c

Browse files
committed
chore: fix
1 parent 5870bf9 commit c7e248c

File tree

1 file changed

+2
-2
lines changed
  • rust/cubestore/cubestore/src/sql

1 file changed

+2
-2
lines changed

rust/cubestore/cubestore/src/sql/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3940,9 +3940,9 @@ mod tests {
39403940
assert_eq!(
39413941
result.get_rows(),
39423942
&vec![
3943-
Row::new(vec![TableValue::Float(42_0.into())]),
3943+
Row::new(vec![TableValue::Float(42.0.into())]),
39443944
Row::new(vec![TableValue::Float(42.44.into())]),
3945-
Row::new(vec![TableValue::Float(1230_0.into())]),
3945+
Row::new(vec![TableValue::Float(1230.0.into())]),
39463946
]
39473947
)
39483948
}

0 commit comments

Comments
 (0)