mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
Run rustfmt (small issue in a test)
This commit is contained in:
parent
7bfd37e888
commit
3ecc2e06ba
1 changed files with 2 additions and 1 deletions
|
@ -105,7 +105,8 @@ async fn test_from_row() -> anyhow::Result<()> {
|
|||
"SELECT * from (VALUES (1, 'Herp Derpinson')) accounts(id, name) where id = $1",
|
||||
)
|
||||
.bind(1_i32)
|
||||
.fetch_one(&mut conn).await?;
|
||||
.fetch_one(&mut conn)
|
||||
.await?;
|
||||
|
||||
assert_eq!(account.id, 1);
|
||||
assert_eq!(account.name, "Herp Derpinson");
|
||||
|
|
Loading…
Reference in a new issue