diff options
| author | Kevin Newton <kddnewton@gmail.com> | 2024-06-11 08:24:43 -0400 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-06-11 12:34:00 +0000 |
| commit | 47322b592a0d75477a65e6e4ddaed2eb6549c32c (patch) | |
| tree | f9681b5f8517c799aa9014f1f7940bba81aac423 /test | |
| parent | d6b1822f22d12dcc772a4b3788bce08e4ba327d1 (diff) | |
[ruby/prism] Match CRuby error message for unknown regexp options
https://github.com/ruby/prism/commit/73669b59f6
Diffstat (limited to 'test')
| -rw-r--r-- | test/prism/errors_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/prism/errors_test.rb b/test/prism/errors_test.rb index c995748083..91ba6ea373 100644 --- a/test/prism/errors_test.rb +++ b/test/prism/errors_test.rb @@ -2134,14 +2134,14 @@ module Prism def test_regular_expression_with_unknown_regexp_options source = "/foo/AZaz" - errors = [["unknown regexp options: AZaz", 4..9]] + errors = [["unknown regexp options - AZaz", 4..9]] assert_errors expression(source), source, errors end def test_interpolated_regular_expression_with_unknown_regexp_options source = "/\#{foo}/AZaz" - errors = [["unknown regexp options: AZaz", 7..12]] + errors = [["unknown regexp options - AZaz", 7..12]] assert_errors expression(source), source, errors end |
