pull/146/head
Chip Senkbeil 2 years ago
parent fcdf589e3f
commit 9fccea014f
No known key found for this signature in database
GPG Key ID: 35EF1F8EC72A4131

@ -19,10 +19,10 @@ mod unix;
#[cfg(unix)]
pub use unix::*;
// #[cfg(windows)]
#[cfg(windows)]
mod windows;
// #[cfg(windows)]
#[cfg(windows)]
pub use windows::*;
/// Represents a type that has a listen interface for receiving raw streams

@ -89,7 +89,7 @@ mod tests {
}
#[tokio::test]
async fn should_be_able_to_receive_connections_and_send_and_receive_data_with_them() {
async fn should_be_able_to_receive_connections_and_read_and_write_data_with_them() {
let (tx, rx) = oneshot::channel();
// Spawn a task that will wait for two connections and then

@ -131,7 +131,7 @@ mod tests {
}
#[tokio::test]
async fn should_be_able_to_receive_connections_and_send_and_receive_data_with_them() {
async fn should_be_able_to_receive_connections_and_read_and_write_data_with_them() {
let (tx, rx) = oneshot::channel();
// Spawn a task that will wait for two connections and then

@ -84,7 +84,7 @@ mod tests {
}
#[tokio::test]
async fn should_be_able_to_receive_connections_and_send_and_receive_data_with_them() {
async fn should_be_able_to_receive_connections_and_read_and_write_data_with_them() {
let (tx, rx) = oneshot::channel();
// Spawn a task that will wait for two connections and then

@ -17,10 +17,10 @@ mod unix;
#[cfg(unix)]
pub use unix::*;
// #[cfg(windows)]
#[cfg(windows)]
mod windows;
// #[cfg(windows)]
#[cfg(windows)]
pub use windows::*;
/// Interface representing a transport of raw bytes into and out of the system

Loading…
Cancel
Save