diff --git a/dropshot/src/test_util.rs b/dropshot/src/test_util.rs index 585e31fd3..e7ad4c108 100644 --- a/dropshot/src/test_util.rs +++ b/dropshot/src/test_util.rs @@ -48,11 +48,11 @@ const ALLOWED_HEADER_NAMES: [&str; 4] = */ pub struct ClientTestContext { /** actual bind address of the HTTP server under test */ - bind_address: SocketAddr, + pub bind_address: SocketAddr, /** HTTP client, used for making requests against the test server */ - client: Client, + pub client: Client, /** logger for the test suite HTTP client */ - client_log: Logger, + pub client_log: Logger, } impl ClientTestContext {