Skip to content

Commit 4154975

Browse files
Fix static numeric value in test
1 parent 484c912 commit 4154975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16590,7 +16590,7 @@ mod tests {
1659016590
if let Statement::CreateTable(v) = &ast[0] {
1659116591
assert_eq!(
1659216592
v.columns[0].options[0].option,
16593-
ColumnOption::Srid(Expr::value(Value::Number("4326".to_string(), false)))
16593+
ColumnOption::Srid(Expr::value(Value::Number("4326".parse().unwrap(), false)))
1659416594
);
1659516595
}
1659616596
}

0 commit comments

Comments
 (0)