From 1ef25c5e4629567462299b692230d6d5b5a2c541 Mon Sep 17 00:00:00 2001 From: Nikhil Benesch Date: Mon, 21 Feb 2022 23:34:50 -0500 Subject: [PATCH] Fix replication tests when runtime feature is disabled --- tokio-postgres/tests/test/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tokio-postgres/tests/test/main.rs b/tokio-postgres/tests/test/main.rs index 416ede135..f6c2c0d94 100644 --- a/tokio-postgres/tests/test/main.rs +++ b/tokio-postgres/tests/test/main.rs @@ -21,6 +21,7 @@ use tokio_postgres::{ mod binary_copy; mod parse; +#[cfg(feature = "runtime")] mod replication; #[cfg(feature = "runtime")] mod runtime;