From 8436dfc15a3cd560bb6ab1dcce97fcc625943c6f Mon Sep 17 00:00:00 2001 From: Agus Zubiaga Date: Thu, 30 Jan 2025 17:48:28 -0300 Subject: [PATCH] Fix ttest fake_completion closure --- crates/zeta/src/zeta.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/zeta/src/zeta.rs b/crates/zeta/src/zeta.rs index 362cf66e7b9106723b6af3dbfc76eb719c19a295..287cf47185b489ba54577481aef9e3a894989818 100644 --- a/crates/zeta/src/zeta.rs +++ b/crates/zeta/src/zeta.rs @@ -531,7 +531,7 @@ and then another ) -> Task>> { use std::future::ready; - self.request_completion_impl(buffer, position, false, cx, |_, _, _, _| { + self.request_completion_impl(buffer, position, false, cx, |_, _, _| { ready(Ok(response)) }) }