fix windows/mac + rename async_drop to terminate

This commit is contained in:
Ferdinand Schober
2024-07-10 22:33:37 +02:00
parent ebf7897caa
commit ae3ea2c497
9 changed files with 26 additions and 13 deletions

View File

@@ -62,7 +62,7 @@ async fn input_capture_test(config: Config) -> Result<()> {
break;
}
}
input_capture.take().unwrap().async_drop().await.unwrap();
input_capture.take().unwrap().terminate().await.unwrap();
}
Ok(())
}