diff options
author | Schneems <[email protected]> | 2023-12-04 16:19:20 -0600 |
---|---|---|
committer | git <[email protected]> | 2023-12-04 22:29:44 +0000 |
commit | 5a2d70ef73d4d17f5999f5087499a5eda1126567 (patch) | |
tree | 40aec7b4359d5ba2694ac9ac11997e96fdc39e6c /spec/syntax_suggest/integration/ruby_command_line_spec.rb | |
parent | 13482ab1e61e0c337badd6308412621f807df9c1 (diff) |
[ruby/syntax_suggest] Bump minimum Ruby version & update standardrb
https://github.com/ruby/syntax_suggest/commit/73753518e9
Diffstat (limited to 'spec/syntax_suggest/integration/ruby_command_line_spec.rb')
-rw-r--r-- | spec/syntax_suggest/integration/ruby_command_line_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/syntax_suggest/integration/ruby_command_line_spec.rb b/spec/syntax_suggest/integration/ruby_command_line_spec.rb index d3cc4ca9d9..c1ec4be54e 100644 --- a/spec/syntax_suggest/integration/ruby_command_line_spec.rb +++ b/spec/syntax_suggest/integration/ruby_command_line_spec.rb @@ -9,7 +9,7 @@ module SyntaxSuggest Dir.mktmpdir do |dir| tmpdir = Pathname(dir) script = tmpdir.join("script.rb") - script.write <<~'EOM' + script.write <<~EOM puts Kernel.private_methods EOM @@ -159,7 +159,7 @@ module SyntaxSuggest Dir.mktmpdir do |dir| tmpdir = Pathname(dir) script = tmpdir.join("script.rb") - script.write <<~'EOM' + script.write <<~EOM $stderr = STDOUT eval("def lol") EOM @@ -178,7 +178,7 @@ module SyntaxSuggest Dir.mktmpdir do |dir| tmpdir = Pathname(dir) script = tmpdir.join("script.rb") - script.write <<~'EOM' + script.write <<~EOM break EOM |