Skip to content

Commit a3ff1f9

Browse files
committed
Rustfmt
1 parent 6ae93a0 commit a3ff1f9

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tokio-postgres-openssl/src/test.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,10 @@ fn runtime() {
7777
builder.set_ca_file("../test/server.crt").unwrap();
7878
let connector = MakeTlsConnector::new(builder.build());
7979

80-
let connect = tokio_postgres::connect("host=localhost port=5433 user=postgres", RequireTls(connector));
80+
let connect = tokio_postgres::connect(
81+
"host=localhost port=5433 user=postgres",
82+
RequireTls(connector),
83+
);
8184
let (mut client, connection) = runtime.block_on(connect).unwrap();
8285
let connection = connection.map_err(|e| panic!("{}", e));
8386
runtime.spawn(connection);

0 commit comments

Comments
 (0)