Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Nov 28, 2024
1 parent cd4eb90 commit 9c55967
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions schema-engine/sql-migration-tests/tests/migrations/indexes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1018,10 +1018,6 @@ fn changing_unique_to_pk_works(api: TestApi) {
api.schema_push_w_datasource(dm2).send().assert_green();

api.assert_schema()
.assert_table("A", |table| {
table.assert_pk(|pk| pk.assert_columns(&["id"]))
})
.assert_table("B", |table| {
table.assert_pk(|pk| pk.assert_columns(&["x", "y"]))
});
.assert_table("A", |table| table.assert_pk(|pk| pk.assert_columns(&["id"])))
.assert_table("B", |table| table.assert_pk(|pk| pk.assert_columns(&["x", "y"])));
}

0 comments on commit 9c55967

Please sign in to comment.