Skip to content

Commit

Permalink
730: reenable test
Browse files Browse the repository at this point in the history
  • Loading branch information
idruzhitskiy committed Feb 14, 2024
1 parent 1dc8ee3 commit 099ecdd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions bob-backend/src/pearl/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
}

0 comments on commit 099ecdd

Please sign in to comment.