From 099ecdd7ab1369e9b81a5fb4651ac4d1bf19d412 Mon Sep 17 00:00:00 2001 From: Ivan Druzhitskiy Date: Wed, 14 Feb 2024 14:44:39 +0300 Subject: [PATCH] 730: reenable test --- bob-backend/src/pearl/tests.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bob-backend/src/pearl/tests.rs b/bob-backend/src/pearl/tests.rs index 9a56f6b6..5c95ec04 100755 --- a/bob-backend/src/pearl/tests.rs +++ b/bob-backend/src/pearl/tests.rs @@ -67,8 +67,6 @@ vdisks: create_backend(node_config, cluster_config).await.unwrap() } -// Does not work in windows yet (file lock error) -#[cfg(not(target_family = "windows"))] #[tokio::test(flavor = "multi_thread")] async fn test_write_multiple_read() { drop_pearl().await; @@ -92,5 +90,6 @@ async fn test_write_multiple_read() { assert_eq!(TIMESTAMP, res.unwrap().meta().timestamp()); let res = backend.get(operation, BobKey::from(KEY_ID)).await; assert_eq!(TIMESTAMP, res.unwrap().meta().timestamp()); + backend.shutdown().await; drop_pearl().await; }