Commit b937b61 1 parent 70d9bcb commit b937b61 Copy full SHA for b937b61
File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -615,7 +615,6 @@ async fn test_flatten() -> anyhow::Result<()> {
615
615
Ok ( ( ) )
616
616
}
617
617
618
-
619
618
#[ cfg( feature = "macros" ) ]
620
619
#[ sqlx_macros:: test]
621
620
async fn test_skip ( ) -> anyhow:: Result < ( ) > {
@@ -633,11 +632,9 @@ async fn test_skip() -> anyhow::Result<()> {
633
632
634
633
let mut conn = new :: < Postgres > ( ) . await ?;
635
634
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 ?;
641
638
println ! ( "{:?}" , account) ;
642
639
643
640
assert_eq ! ( 1 , account. id) ;
You can’t perform that action at this time.
0 commit comments