fix assertion in test_quote

This commit is contained in:
Nikita Sivukhin
2025-02-09 23:50:11 +04:00
parent f22bfad695
commit 7cdad64a5f

View File

@@ -3838,7 +3838,7 @@ mod tests {
assert_eq!(exec_quote(&input), expected);
let input = OwnedValue::build_text(Rc::new(String::from("hello''world")));
let expected = OwnedValue::build_text(Rc::new(String::from("'hello''world'")));
let expected = OwnedValue::build_text(Rc::new(String::from("'hello''''world'")));
assert_eq!(exec_quote(&input), expected);
}