diff --git a/test/test_string_interpolation.coffee b/test/test_string_interpolation.coffee index d62374b7..6d6687f5 100644 --- a/test/test_string_interpolation.coffee +++ b/test/test_string_interpolation.coffee @@ -7,7 +7,7 @@ ok "${hello} ${world}!" is 'Hello World!' ok "[$hello$world]" is '[HelloWorld]' ok "[${hello}${world}]" is '[HelloWorld]' ok "$hello$$world" is 'Hello$World' -# ok "${hello}$${world}" is 'Hello$World' +ok "${hello}$${world}" is 'Hello$World' [s, t, r, i, n, g]: ['s', 't', 'r', 'i', 'n', 'g'] ok "$s$t$r$i$n$g" is 'string'