Skip to content

Commit b937b61

Browse files
committed
fixed cargo format check
1 parent 70d9bcb commit b937b61

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

tests/postgres/derives.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,6 @@ async fn test_flatten() -> anyhow::Result<()> {
615615
Ok(())
616616
}
617617

618-
619618
#[cfg(feature = "macros")]
620619
#[sqlx_macros::test]
621620
async fn test_skip() -> anyhow::Result<()> {
@@ -633,11 +632,9 @@ async fn test_skip() -> anyhow::Result<()> {
633632

634633
let mut conn = new::<Postgres>().await?;
635634

636-
let account: AccountKeyword = sqlx::query_as(
637-
r#"SELECT * from (VALUES (1)) accounts("id")"#,
638-
)
639-
.fetch_one(&mut conn)
640-
.await?;
635+
let account: AccountKeyword = sqlx::query_as(r#"SELECT * from (VALUES (1)) accounts("id")"#)
636+
.fetch_one(&mut conn)
637+
.await?;
641638
println!("{:?}", account);
642639

643640
assert_eq!(1, account.id);

0 commit comments

Comments
 (0)