Remove remaining code associated with .zed.toml files

This commit is contained in:
Max Brunsfeld 2022-05-09 16:23:27 -07:00
parent d7cba73ead
commit 054d697fb7
3 changed files with 2 additions and 29 deletions

View file

@ -5880,13 +5880,7 @@ mod tests {
let host_language_registry = Arc::new(LanguageRegistry::test());
let fs = FakeFs::new(cx.background());
fs.insert_tree(
"/_collab",
json!({
".zed.toml": r#"collaborators = ["guest-1", "guest-2", "guest-3", "guest-4"]"#
}),
)
.await;
fs.insert_tree("/_collab", json!({"init": ""})).await;
let mut server = TestServer::start(cx.foreground(), cx.background()).await;
let db = server.app_state.db.clone();