From ebe40e803717a2a009f806f87dbd6f479cd5dbe7 Mon Sep 17 00:00:00 2001 From: Loric ANDRE Date: Tue, 11 Aug 2026 15:00:01 +0200 Subject: [PATCH] test: fix literal failing test --- tests/popup.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/popup.rs b/tests/popup.rs index 09e9443f..10618769 100644 --- a/tests/popup.rs +++ b/tests/popup.rs @@ -139,9 +139,10 @@ fn tmux_quote() -> Result<()> { tmux.start_sk(None, &["--tmux", "--bind 'ctrl-a:reload(ls /foo*)'"])?; tmux.until(|_| Path::new(&outfile).exists())?; let cmd = get_tmux_cmd(&outfile)?; + println!("tmux cmd: {cmd}"); assert!(cmd.starts_with("display-popup")); assert!(cmd.contains("-E")); - assert!(cmd.contains("--bind ctrl-a':reload(ls /foo*)'")); + assert!(cmd.contains("--bind ctrl-a:reload'(ls /foo*)'")); assert!(cmd.contains("SKIM_ESCAPED_VAR=;\\;")); Ok(())