diff options
| author | Jemma Issroff <jemmaissroff@gmail.com> | 2023-11-02 14:53:33 -0300 |
|---|---|---|
| committer | Jemma Issroff <jemmaissroff@gmail.com> | 2023-11-02 17:46:43 -0300 |
| commit | 8b4b3b1d385df481f67fd8e24e1e8dca1caca446 (patch) | |
| tree | c43f922557170cbdeee284f650105b05f035bc7d /test/ruby | |
| parent | 0359f9ca674a9cb30729bf545ea0a07ab5344ec3 (diff) | |
[PRISM] Fix popped for MatchWriteNode
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_compile_prism.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_compile_prism.rb b/test/ruby/test_compile_prism.rb index 03b0f9f29e..fa1ea646c4 100644 --- a/test/ruby/test_compile_prism.rb +++ b/test/ruby/test_compile_prism.rb @@ -271,8 +271,8 @@ module Prism end def test_MatchWriteNode - # assert_prism_eval("/(?<foo>bar)(?<baz>bar>)/ =~ 'barbar'") - # assert_prism_eval("/(?<foo>bar)/ =~ 'barbar'") + assert_prism_eval("/(?<foo>bar)(?<baz>bar>)/ =~ 'barbar'") + assert_prism_eval("/(?<foo>bar)/ =~ 'barbar'") end ############################################################################ |
