aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_vfs/tests/vfs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_vfs/tests/vfs.rs b/crates/ra_vfs/tests/vfs.rs
index 4f44215c8..f56fc4603 100644
--- a/crates/ra_vfs/tests/vfs.rs
+++ b/crates/ra_vfs/tests/vfs.rs
@@ -25,7 +25,7 @@ fn test_vfs_works() -> std::io::Result<()> {
25 let a_root = dir.path().join("a"); 25 let a_root = dir.path().join("a");
26 let b_root = dir.path().join("a/b"); 26 let b_root = dir.path().join("a/b");
27 27
28 let mut vfs = Vfs::new(vec![a_root, b_root]); 28 let (mut vfs, _) = Vfs::new(vec![a_root, b_root]);
29 for _ in 0..2 { 29 for _ in 0..2 {
30 let task = vfs.task_receiver().recv().unwrap(); 30 let task = vfs.task_receiver().recv().unwrap();
31 vfs.handle_task(task); 31 vfs.handle_task(task);