diff options
| author | Justin Collins <justin@presidentbeef.com> | 2024-03-23 15:20:52 -0700 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-03-25 12:13:52 +0000 |
| commit | f5a2f55aca5f229bb2a9dac62d96d85fc14ae718 (patch) | |
| tree | 2f0fc1cb9c0d7efb4eca77e65fba1f0880b18906 /test/prism/ruby_parser_test.rb | |
| parent | daf1d7bfefa89a0473af9b304a3798ba1e67166a (diff) | |
[ruby/prism] Use Sexp#line_max not Sexp#max_line
for RubyParser translation
https://github.com/ruby/prism/commit/a37169621a
Diffstat (limited to 'test/prism/ruby_parser_test.rb')
| -rw-r--r-- | test/prism/ruby_parser_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/prism/ruby_parser_test.rb b/test/prism/ruby_parser_test.rb index 1d22f0e7b8..952e493af9 100644 --- a/test/prism/ruby_parser_test.rb +++ b/test/prism/ruby_parser_test.rb @@ -18,7 +18,7 @@ end Sexp.prepend( Module.new do def ==(other) - super && line == other.line && max_line == other.max_line && file == other.file + super && line == other.line && line_max == other.line_max && file == other.file end end ) |
