From 28abe63f46d4473e765d48c5ddea421de75acdb6 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Wed, 6 Jan 2021 17:50:39 +0000 Subject: [PATCH] tests: Fix test_virtio_block_disable_io_uring() This test wasn't actually disabling io_uring. Signed-off-by: Rob Bradford --- tests/integration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration.rs b/tests/integration.rs index d7a30f70e..dc3bb9c20 100644 --- a/tests/integration.rs +++ b/tests/integration.rs @@ -2910,7 +2910,7 @@ mod tests { #[test] fn test_virtio_block_disable_io_uring() { - _test_virtio_block(FOCAL_IMAGE_NAME, false) + _test_virtio_block(FOCAL_IMAGE_NAME, true) } #[test]