From 7cdad64a5fbd55f0fe07374206ace642dd74ba2a Mon Sep 17 00:00:00 2001 From: Nikita Sivukhin Date: Sun, 9 Feb 2025 23:50:11 +0400 Subject: [PATCH] fix assertion in test_quote --- core/vdbe/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/vdbe/mod.rs b/core/vdbe/mod.rs index 37dc141ce..a9a66c904 100644 --- a/core/vdbe/mod.rs +++ b/core/vdbe/mod.rs @@ -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); }