Improve %% escaping error message (#13018)

This commit is contained in:
Alexander Brassel 2025-03-04 08:03:11 -08:00 committed by GitHub
parent 9440feae7c
commit 82f8ac208f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 1 deletions

View file

@ -90,3 +90,14 @@ async fn shell_expansion() -> anyhow::Result<()> {
Ok(())
}
#[tokio::test(flavor = "multi_thread")]
async fn percent_escaping() -> anyhow::Result<()> {
test_statusline(
r#":sh echo hello 10%"#,
"'run-shell-command': '%' was not properly escaped. Please use '%%'",
Severity::Error,
)
.await?;
Ok(())
}