summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKevin Newton <kddnewton@gmail.com>2024-01-25 10:33:48 -0500
committerKevin Newton <kddnewton@gmail.com>2024-01-25 11:11:50 -0500
commit1301422dfe44ed6aca97b20f672098c276dd9bd4 (patch)
tree0aebf842e9c7b268ac9647d0a0b1264974c3d6f2 /test
parentebf803aa196e2df4c129b1ec11107363ebbe1382 (diff)
[PRISM] Fix VM_CALL_ARGS_SPLAT_MUT failures
Diffstat (limited to 'test')
-rw-r--r--test/prism/locals_test.rb2
-rw-r--r--test/prism/newline_test.rb1
2 files changed, 1 insertions, 2 deletions
diff --git a/test/prism/locals_test.rb b/test/prism/locals_test.rb
index e7322b0314..1453e7aecd 100644
--- a/test/prism/locals_test.rb
+++ b/test/prism/locals_test.rb
@@ -65,7 +65,7 @@ module Prism
filepath = File.join(base, relative)
define_method("test_#{relative}") { assert_locals(filepath) }
- end if false # skip until ... uses * and ** and not ruby2_keywords
+ end
def setup
@previous_default_external = Encoding.default_external
diff --git a/test/prism/newline_test.rb b/test/prism/newline_test.rb
index a3fff7a1d1..d998502869 100644
--- a/test/prism/newline_test.rb
+++ b/test/prism/newline_test.rb
@@ -11,7 +11,6 @@ module Prism
filepaths.each do |relative|
define_method("test_newline_flags_#{relative}") do
- next if relative == 'locals_test.rb'
assert_newlines(base, relative)
end
end