diff options
author | Kevin Newton <[email protected]> | 2023-12-15 13:18:40 -0500 |
---|---|---|
committer | Kevin Newton <[email protected]> | 2023-12-15 13:42:19 -0500 |
commit | b418e5a5800513da7204c0ba7b3a95a2d9ee9a7e (patch) | |
tree | ba96de3a2062ad1fa4a6650a7df76eccb039b8a0 /test/ruby/test_rubyoptions.rb | |
parent | a604fe42620735f7bd1145e01bdca5398231ffb0 (diff) |
Update error message in test_rubyoptions
Diffstat (limited to 'test/ruby/test_rubyoptions.rb')
-rw-r--r-- | test/ruby/test_rubyoptions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_rubyoptions.rb b/test/ruby/test_rubyoptions.rb index be363008de..8118d59118 100644 --- a/test/ruby/test_rubyoptions.rb +++ b/test/ruby/test_rubyoptions.rb @@ -288,7 +288,7 @@ class TestRubyOptions < Test::Unit::TestCase end def test_parser_flag - warning = /The Prism compiler is currently experimental and compatibility with parse.y is not yet complete. Please report an issues you find on the prism issue tracker./ + warning = /compiler based on the Prism parser is currently experimental/ assert_in_out_err(%w(--parser=prism -e) + ["puts :hi"], "", %w(hi), warning) |