Skip to content

Commit

Permalink
Capitalization fix
Browse files Browse the repository at this point in the history
Co-authored-by: Joshua Barr <70981087+jobarr-amzn@users.noreply.github.com>
  • Loading branch information
zslayton and jobarr-amzn authored Dec 11, 2024
1 parent 3a5183e commit c576f2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lazy/expanded/macro_evaluator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2693,13 +2693,13 @@ mod tests {
r#"
(:add_macros
(macro foo (x?)
(.make_string "Hello, " (.default (%x) "World!"))))
(.make_string "Hello, " (.default (%x) "world!"))))
(:foo "Gary")
(:foo)
"#,
r#"
"Hello, Gary"
"Hello, World!"
"Hello, world!"
"#,
)
}
Expand Down

0 comments on commit c576f2e

Please sign in to comment.