From 298f0a454a7b9ba5f3eb7574c7b8ab14ed64bacd Mon Sep 17 00:00:00 2001 From: Basile Henry Date: Thu, 4 Apr 2024 22:19:53 +0200 Subject: [PATCH] helix-term: Update test to not use absent partial history --- helix-term/tests/test/prompt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/tests/test/prompt.rs b/helix-term/tests/test/prompt.rs index 4f3bf7632..911cac478 100644 --- a/helix-term/tests/test/prompt.rs +++ b/helix-term/tests/test/prompt.rs @@ -4,7 +4,7 @@ use super::*; async fn test_history_completion() -> anyhow::Result<()> { test_key_sequence( &mut AppBuilder::new().build()?, - Some(":asdf:theme d"), + Some(":asdf:"), Some(&|app| { assert!(!app.editor.is_err()); }),