summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKevin Newton <kddnewton@gmail.com>2024-06-11 08:24:43 -0400
committergit <svn-admin@ruby-lang.org>2024-06-11 12:34:00 +0000
commit47322b592a0d75477a65e6e4ddaed2eb6549c32c (patch)
treef9681b5f8517c799aa9014f1f7940bba81aac423 /test
parentd6b1822f22d12dcc772a4b3788bce08e4ba327d1 (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.rb4
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