diff --git a/crates/language/src/language.rs b/crates/language/src/language.rs index 4652da8bff..bf24118aff 100644 --- a/crates/language/src/language.rs +++ b/crates/language/src/language.rs @@ -8,7 +8,7 @@ mod tests; use anyhow::{anyhow, Result}; use collections::HashSet; -use gpui::{AppContext, TestAppContext}; +use gpui::AppContext; use highlight_map::HighlightMap; use lazy_static::lazy_static; use parking_lot::Mutex; @@ -357,13 +357,13 @@ impl CompletionLabel { #[cfg(any(test, feature = "test-support"))] impl LanguageServerConfig { - pub async fn fake(cx: &TestAppContext) -> (Self, lsp::FakeLanguageServer) { + pub async fn fake(cx: &gpui::TestAppContext) -> (Self, lsp::FakeLanguageServer) { Self::fake_with_capabilities(Default::default(), cx).await } pub async fn fake_with_capabilities( capabilites: lsp::ServerCapabilities, - cx: &TestAppContext, + cx: &gpui::TestAppContext, ) -> (Self, lsp::FakeLanguageServer) { let (server, fake) = lsp::LanguageServer::fake_with_capabilities(capabilites, cx).await; fake.started diff --git a/crates/lsp/src/lsp.rs b/crates/lsp/src/lsp.rs index 6a926c7e2a..534aea25f1 100644 --- a/crates/lsp/src/lsp.rs +++ b/crates/lsp/src/lsp.rs @@ -1,6 +1,6 @@ use anyhow::{anyhow, Context, Result}; use futures::{io::BufWriter, AsyncRead, AsyncWrite}; -use gpui::{executor, Task, TestAppContext}; +use gpui::{executor, Task}; use parking_lot::{Mutex, RwLock}; use postage::{barrier, oneshot, prelude::Stream, sink::Sink, watch}; use serde::{Deserialize, Serialize}; @@ -485,13 +485,13 @@ pub struct RequestId { #[cfg(any(test, feature = "test-support"))] impl LanguageServer { - pub async fn fake(cx: &TestAppContext) -> (Arc, FakeLanguageServer) { + pub async fn fake(cx: &gpui::TestAppContext) -> (Arc, FakeLanguageServer) { Self::fake_with_capabilities(Default::default(), cx).await } pub async fn fake_with_capabilities( capabilities: ServerCapabilities, - cx: &TestAppContext, + cx: &gpui::TestAppContext, ) -> (Arc, FakeLanguageServer) { let stdin = async_pipe::pipe(); let stdout = async_pipe::pipe();