Run rustfmt (small issue in a test)

This commit is contained in:
Ryan Leckey 2020-03-23 21:24:28 -07:00
parent 7bfd37e888
commit 3ecc2e06ba

View file

@ -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");