Use smoke_test for target_session_attrs_ok

This commit is contained in:
Steven Fackler
2019-07-28 17:50:46 -07:00
parent dea6c3ebc5
commit 00ef0bfd84

View File

@@ -49,12 +49,7 @@ async fn wrong_port_count() {
#[tokio::test]
async fn target_session_attrs_ok() {
let _ = tokio_postgres::connect(
"host=localhost port=5433 user=postgres target_session_attrs=read-write",
NoTls,
)
.await
.unwrap();
smoke_test("host=localhost port=5433 user=postgres target_session_attrs=read-write").await;
}
#[tokio::test]