Move to new interpolation syntax

This commit is contained in:
Sam Mohr 2025-01-10 10:18:15 -08:00
parent a69a326161
commit eb1b5ffa26
No known key found for this signature in database
GPG key ID: EA41D161A3C1BC99
68 changed files with 665 additions and 633 deletions

View file

@ -6575,13 +6575,13 @@ mod test_fmt {
expr_formats_to(
indoc!(
"
x = \"foo:\u{200B} $(bar).\"
x = \"foo:\u{200B} ${bar}.\"
x
"
),
indoc!(
r#"
x = "foo:\u(200b) $(bar)."
x = "foo:\u(200b) ${bar}."
x
"#
),
@ -6595,7 +6595,7 @@ mod test_fmt {
"
x =
\"\"\"
foo:\u{200B} $(bar).
foo:\u{200B} ${bar}.
\"\"\"
x
"
@ -6604,7 +6604,7 @@ mod test_fmt {
r#"
x =
"""
foo:\u(200b) $(bar).
foo:\u(200b) ${bar}.
"""
x
"#