()
| 361 | /// Tests that incremental_vacuum does not fail. |
| 362 | #[tokio::test(flavor = "multi_thread", worker_threads = 2)] |
| 363 | async fn test_incremental_vacuum() -> Result<()> { |
| 364 | let t = TestContext::new().await; |
| 365 | |
| 366 | incremental_vacuum(&t).await?; |
| 367 | |
| 368 | Ok(()) |
| 369 | } |
nothing calls this directly
no test coverage detected