Skip to content

Commit 8783f09

Browse files
Fix static numeric value in test
1 parent a9781c0 commit 8783f09

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
@@ -16584,7 +16584,7 @@ mod tests {
1658416584
if let Statement::CreateTable(v) = &ast[0] {
1658516585
assert_eq!(
1658616586
v.columns[0].options[0].option,
16587-
ColumnOption::Srid(Expr::value(Value::Number("4326".to_string(), false)))
16587+
ColumnOption::Srid(Expr::value(Value::Number("4326".parse().unwrap(), false)))
1658816588
);
1658916589
}
1659016590
}

0 commit comments

Comments
 (0)