summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTSUYUSATO Kitsune <[email protected]>2023-11-28 23:50:06 +0900
committergit <[email protected]>2023-11-28 17:27:11 +0000
commit55f34d474592f4ff5332615c7e4baf6270e7090d (patch)
treefb3b56c5400a4ed1ef6c251baa0188444fd5368e
parentc11dd3475306a951959a8599f31ca360342ce008 (diff)
[ruby/prism] Fix tests
https://github.com/ruby/prism/commit/1e6ecbaf04
-rw-r--r--test/prism/errors_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/prism/errors_test.rb b/test/prism/errors_test.rb
index 87fe0406ef..7292972961 100644
--- a/test/prism/errors_test.rb
+++ b/test/prism/errors_test.rb
@@ -1836,7 +1836,7 @@ module Prism
proc { |foo = foo| }
proc { |foo: foo| }
RUBY
- message = 'Parameter default value references itself'
+ message = 'parameter default value references itself'
assert_errors expression(source), source, [
[message, 14..17],
[message, 37..40],