Skip to content

Commit 3d65adf

Browse files
committed
Fix another lint error
1 parent 20af33a commit 3d65adf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sqlparser_bigquery.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2806,9 +2806,9 @@ fn test_export_data() {
28062806
);
28072807

28082808
let err = bigquery()
2809-
.parse_sql_statements(concat!(
2809+
.parse_sql_statements(
28102810
"EXPORT DATA AS SELECT field1, field2 FROM mydataset.table1 ORDER BY field1 LIMIT 10",
2811-
))
2811+
)
28122812
.unwrap_err();
28132813
assert_eq!(
28142814
err.to_string(),

0 commit comments

Comments
 (0)