chore(connlib): make fields in TunnelTest private (#5967)

These aren't actually accessed outside the test itself and can be
private.
This commit is contained in:
Thomas Eizinger
2024-07-24 05:54:37 +10:00
committed by GitHub
parent 710fb2fd7e
commit 23ef0e36b4

View File

@@ -38,8 +38,8 @@ pub(crate) struct TunnelTest {
now: Instant,
utc_now: DateTime<Utc>,
pub(crate) client: Host<SimClient>,
pub(crate) gateways: BTreeMap<GatewayId, Host<SimGateway>>,
client: Host<SimClient>,
gateways: BTreeMap<GatewayId, Host<SimGateway>>,
relays: BTreeMap<RelayId, Host<SimRelay>>,
drop_direct_client_traffic: bool,