Skip to content

Commit 778bc5d

Browse files
committed
fix codestyle
1 parent 1d1fb8b commit 778bc5d

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/dds/create_table.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -649,13 +649,11 @@ mod tests {
649649

650650
#[test]
651651
fn parse_create_simple() {
652-
let sqls = [
653-
"create table admin_role \
652+
let sqls = ["create table admin_role \
654653
(`role_id` int(10) unsigned NOT NULL Auto_Increment COMMENT 'Role ID',\
655654
`role_type` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Role Type',\
656655
PRIMARY KEY (`role_id`))\
657-
ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Role Table';",
658-
];
656+
ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Admin Role Table';"];
659657
let exp = [
660658
CreateTableStatement {
661659
temporary: false,

0 commit comments

Comments
 (0)