aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorKevin Newton <kddnewton@gmail.com>2023-12-07 09:34:16 -0500
committergit <svn-admin@ruby-lang.org>2023-12-07 14:39:11 +0000
commit10bc0bd4ab9b886b77ba0cb4cdb2fa121a84c835 (patch)
tree5e9351d397204069e1d0c833f9a390db9defd392 /test
parent8e86a4347e8943305d2667865154fba046eb862d (diff)
downloadruby-10bc0bd4ab9b886b77ba0cb4cdb2fa121a84c835.tar.gz
[ruby/prism] Remove warnings check from parse_success? method
https://github.com/ruby/prism/commit/e30a241fb3
Diffstat (limited to 'test')
-rw-r--r--test/prism/ruby_api_test.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/prism/ruby_api_test.rb b/test/prism/ruby_api_test.rb
index b934c26ff4..9da326b2b8 100644
--- a/test/prism/ruby_api_test.rb
+++ b/test/prism/ruby_api_test.rb
@@ -23,9 +23,6 @@ module Prism
def test_parse_success?
assert Prism.parse_success?("1")
refute Prism.parse_success?("<>")
-
- assert Prism.parse_success?("m //", verbose: false)
- refute Prism.parse_success?("m //", verbose: true)
end
def test_parse_file_success?