Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tyt2y3 committed Jan 27, 2024
1 parent 36457dd commit 82d0528
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/mysql/table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,10 @@ fn create_10() {
assert_eq!(
Table::create()
.table(Glyph::Table)
.col(
ColumnDef::new(Glyph::Id)
.enumeration(Alias::new("tea"), [Alias::new("EverydayTea"), Alias::new("BreakfastTea")]),
)
.col(ColumnDef::new(Glyph::Id).enumeration(
Alias::new("tea"),
[Alias::new("EverydayTea"), Alias::new("BreakfastTea")]
),)
.to_string(MysqlQueryBuilder),
"CREATE TABLE `glyph` ( `id` ENUM('EverydayTea', 'BreakfastTea') )"
);
Expand Down

0 comments on commit 82d0528

Please sign in to comment.