summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKevin Newton <kddnewton@gmail.com>2023-10-11 20:56:33 -0400
committerKevin Newton <kddnewton@gmail.com>2023-10-13 15:31:30 -0400
commite4f1c06a9bb6012ac155b7a7789d2b5cb4e8abdc (patch)
treeb6a6cddb0b5b50f7ee010afbcec5ebc6c25ecf40 /test
parenta1de76296655154e3d8db782721efa230c7b4619 (diff)
[ruby/prism] Use current_string to handle :" symbols
https://github.com/ruby/prism/commit/eedeec8f9a
Diffstat (limited to 'test')
-rw-r--r--test/prism/unescape_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/prism/unescape_test.rb b/test/prism/unescape_test.rb
index 3953d0c78e..123c139077 100644
--- a/test/prism/unescape_test.rb
+++ b/test/prism/unescape_test.rb
@@ -134,7 +134,7 @@ module Prism
[Context::List.new("%I[", "]"), escapes],
[Context::Symbol.new("%s[", "]"), escapes],
[Context::Symbol.new(":'", "'"), escapes],
- # [Context::Symbol.new(":\"", "\""), escapes],
+ [Context::Symbol.new(":\"", "\""), escapes],
# [Context::RegExp.new("/", "/"), escapes],
# [Context::RegExp.new("%r[", "]"), escapes]
]