diff --git a/plane/plane-tests/tests/common/resources/pebble.rs b/plane/plane-tests/tests/common/resources/pebble.rs index 4e3f35a5..1cca5715 100644 --- a/plane/plane-tests/tests/common/resources/pebble.rs +++ b/plane/plane-tests/tests/common/resources/pebble.rs @@ -34,6 +34,7 @@ echo "Starting pebble with DNS server $DNS_SERVER" pub struct Pebble { container: Container, + #[allow(dead_code)] // Used in tests pub directory_url: Url, } diff --git a/plane/plane-tests/tests/common/test_env.rs b/plane/plane-tests/tests/common/test_env.rs index ce932ced..263e855e 100644 --- a/plane/plane-tests/tests/common/test_env.rs +++ b/plane/plane-tests/tests/common/test_env.rs @@ -31,6 +31,7 @@ pub struct TestEnvironment { drop_futures: Arc>>>, log_subscription: Arc>>, pub run_name: String, + #[allow(dead_code)] // Used in tests. pub cluster: ClusterName, pub pool: DronePoolName, } @@ -201,6 +202,7 @@ impl TestEnvironment { } pub struct DnsServer { + #[allow(dead_code)] // Used in tests. pub port: u16, _handle: Option>, }