summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--talpid_core/src/process/monitor.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/talpid_core/src/process/monitor.rs b/talpid_core/src/process/monitor.rs
index bab2876e05..6914d8d821 100644
--- a/talpid_core/src/process/monitor.rs
+++ b/talpid_core/src/process/monitor.rs
@@ -57,15 +57,6 @@ mod child_monitor_tests {
use std::sync::mpsc;
use std::time::Duration;
- /// Tries to recv a message from the given `$rx` for one second and tries to match it with the
- /// given expected value, `$expected`
- macro_rules! assert_event {
- ($rx:ident, $expected:pat) => {{
- let result = $rx.recv_timeout(Duration::new(1, 0));
- assert_matches!(result, $expected);
- }}
- }
-
fn echo_cmd(s: &str) -> Expression {
cmd("echo", &[s]).stdout_capture().unchecked()
}