Update tests to use $(...) interpolation

This commit is contained in:
Richard Feldman 2024-01-06 08:36:59 -05:00
parent 25be487977
commit 163bde0c41
No known key found for this signature in database
GPG key ID: F1F21AA5B1D9E43B
3 changed files with 55 additions and 18 deletions

View file

@ -777,7 +777,7 @@ mod test_snapshots {
#[test]
fn string_with_multiple_interpolations() {
assert_segments(r#""Hi, \(name)! How is \(project) going?""#, |arena| {
assert_segments(r#""Hi, $(name)! How is $(project) going?""#, |arena| {
let expr1 = arena.alloc(Var {
module_name: "",
ident: "name",