summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_compile_prism.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/ruby/test_compile_prism.rb b/test/ruby/test_compile_prism.rb
index 5cdb2dc81d..ae40f4b152 100644
--- a/test/ruby/test_compile_prism.rb
+++ b/test/ruby/test_compile_prism.rb
@@ -484,7 +484,6 @@ module Prism
end
def test_CaseNode
-=begin
assert_prism_eval("case :a; when :a; 1; else; 2; end")
assert_prism_eval("case :a; when :b; 1; else; 2; end")
assert_prism_eval("case :a; when :a; 1; else; 2; end")
@@ -494,7 +493,6 @@ module Prism
assert_prism_eval("case; when :a, :b; 1; else; 2 end")
assert_prism_eval("case :a; when :b; else; end")
assert_prism_eval("b = 1; case :a; when b; else; end")
-=end
end
def test_ElseNode