aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_vfs/tests
diff options
context:
space:
mode:
authorBernardo <[email protected]>2019-01-21 17:37:46 +0000
committerAleksey Kladov <[email protected]>2019-01-26 08:46:27 +0000
commit7f7c4e7465f58cdbfdaaf232d571960f1b754b7c (patch)
treec45ced6a30832a53e2485744751ddd810663107c /crates/ra_vfs/tests
parentf88355ccb5e8ea2381e13eabcdb64880e757aff1 (diff)
do not emit create for directory again
Diffstat (limited to 'crates/ra_vfs/tests')
-rw-r--r--crates/ra_vfs/tests/vfs.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/ra_vfs/tests/vfs.rs b/crates/ra_vfs/tests/vfs.rs
index 71b25a5c9..b18ea74a3 100644
--- a/crates/ra_vfs/tests/vfs.rs
+++ b/crates/ra_vfs/tests/vfs.rs
@@ -40,9 +40,6 @@ fn test_vfs_works() -> std::io::Result<()> {
40 fs::write(file_path, text)? 40 fs::write(file_path, text)?
41 } 41 }
42 42
43 let gitignore = dir.path().join("a/.gitignore");
44 fs::write(gitignore, "/target").unwrap();
45
46 let a_root = dir.path().join("a"); 43 let a_root = dir.path().join("a");
47 let b_root = dir.path().join("a/b"); 44 let b_root = dir.path().join("a/b");
48 45