From 35fdf1a6242906117da05ec66ae0e30827ab7199 Mon Sep 17 00:00:00 2001 From: Alan Wu Date: Tue, 20 Feb 2024 16:21:32 -0500 Subject: [PATCH] YJIT: Remove duplicate test --- bootstraptest/test_yjit.rb | 9 --------- 1 file changed, 9 deletions(-) diff --git a/bootstraptest/test_yjit.rb b/bootstraptest/test_yjit.rb index 14be1093e23594..2e475cc186bca4 100644 --- a/bootstraptest/test_yjit.rb +++ b/bootstraptest/test_yjit.rb @@ -4569,15 +4569,6 @@ def call_site(args) = opt_rest(*args, **nil) call_site([1]) } -# splat+kw_splat+opt+rest -assert_equal '[1, []]', %q{ - def opt_rest(a = 0, *rest) = [a, rest] - - def call_site(args) = opt_rest(*args, **nil) - - call_site([1]) -} - # splat and nil kw_splat assert_equal 'ok', %q{ def identity(x) = x