remove ununsed function

This commit is contained in:
Irevoire 2022-10-22 17:05:33 +02:00 committed by Clément Renault
parent e9055f5572
commit 1d04ce611d
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4

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]