Fix ttest fake_completion closure

Agus Zubiaga created

Change summary

crates/zeta/src/zeta.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/zeta/src/zeta.rs 🔗

@@ -531,7 +531,7 @@ and then another
     ) -> Task<Result<Option<InlineCompletion>>> {
         use std::future::ready;
 
-        self.request_completion_impl(buffer, position, false, cx, |_, _, _, _| {
+        self.request_completion_impl(buffer, position, false, cx, |_, _, _| {
             ready(Ok(response))
         })
     }