Switch to single quotes for template strings

This commit is contained in:
Gregory Schier
2024-08-22 12:48:14 -07:00
parent adda44e861
commit 6766bc8f59
3 changed files with 15 additions and 15 deletions

View File

@@ -158,7 +158,7 @@ mod tests {
#[tokio::test]
async fn render_valid_fn() {
let vars = HashMap::new();
let template = r#"${[ say_hello(a="John", b="Kate") ]}"#;
let template = r#"${[ say_hello(a='John', b='Kate') ]}"#;
let result = r#"say_hello: 2, Some("John") Some("Kate")"#;
struct CB {}