aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_vfs/tests
diff options
context:
space:
mode:
authorBernardo <[email protected]>2019-01-15 16:45:56 +0000
committerAleksey Kladov <[email protected]>2019-01-26 08:46:27 +0000
commitb0f7e72c49141df0ad95e3fcb561ee6a4d86b537 (patch)
treeae4c4aee243d59046dd9cadb072fef8f48ea7167 /crates/ra_vfs/tests
parent5f31d495bdc8639a826f60c6f42d12bb89be9f1a (diff)
use notify with fix
Diffstat (limited to 'crates/ra_vfs/tests')
-rw-r--r--crates/ra_vfs/tests/vfs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_vfs/tests/vfs.rs b/crates/ra_vfs/tests/vfs.rs
index 9cde2bed7..87fb5a092 100644
--- a/crates/ra_vfs/tests/vfs.rs
+++ b/crates/ra_vfs/tests/vfs.rs
@@ -1,6 +1,6 @@
1use std::{collections::HashSet, fs}; 1use std::{collections::HashSet, fs};
2 2
3use flexi_logger::Logger; 3// use flexi_logger::Logger;
4use ra_vfs::{Vfs, VfsChange}; 4use ra_vfs::{Vfs, VfsChange};
5use tempfile::tempdir; 5use tempfile::tempdir;
6 6
@@ -13,7 +13,7 @@ fn process_tasks(vfs: &mut Vfs, num_tasks: u32) {
13 13
14#[test] 14#[test]
15fn test_vfs_works() -> std::io::Result<()> { 15fn test_vfs_works() -> std::io::Result<()> {
16 Logger::with_str("debug").start().unwrap(); 16 // Logger::with_str("debug").start().unwrap();
17 17
18 let files = [ 18 let files = [
19 ("a/foo.rs", "hello"), 19 ("a/foo.rs", "hello"),