remove ununsed function

This commit is contained in:
Irevoire 2022-10-22 17:05:33 +02:00
parent 3283bb0454
commit 3a95e6291e
No known key found for this signature in database
GPG Key ID: 7A6A970C96104F1B

View File

@ -863,14 +863,6 @@ mod tests {
fn next_breakpoint(&self) -> Breakpoint {
self.test_breakpoint_rcv.recv().unwrap()
}
/// The scheduler will not stop on breakpoints anymore.
fn dont_block(self) {
std::thread::spawn(move || loop {
// unroll and ignore all the state the scheduler is going to send us.
self.test_breakpoint_rcv.iter().last();
});
}
}
#[test]