From 23892d95f5fec8950ca3f9686a630c87e02cf201 Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Fri, 31 Mar 2023 22:54:45 +0100 Subject: [PATCH] [ruby/irb] Drop unnecessary pends for truffleruby https://github.com/ruby/irb/commit/2517039812 --- test/irb/test_cmd.rb | 2 +- test/irb/test_workspace.rb | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/test/irb/test_cmd.rb b/test/irb/test_cmd.rb index dc71c784e9..8af7562505 100644 --- a/test/irb/test_cmd.rb +++ b/test/irb/test_cmd.rb @@ -858,7 +858,7 @@ module TestIRB def test_edit_with_constant # const_source_location is supported after Ruby 2.7 - omit if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7.0') || RUBY_ENGINE == 'truffleruby' + omit if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.7.0') out, err = execute_lines( "edit IRB::Irb" diff --git a/test/irb/test_workspace.rb b/test/irb/test_workspace.rb index 9b10c27b89..c6b8aa1e99 100644 --- a/test/irb/test_workspace.rb +++ b/test/irb/test_workspace.rb @@ -83,7 +83,6 @@ module TestIRB def test_toplevel_binding_local_variables - pend if RUBY_ENGINE == 'truffleruby' bug17623 = '[ruby-core:102468]' bundle_exec = ENV.key?('BUNDLE_GEMFILE') ? ['-rbundler/setup'] : [] top_srcdir = "#{__dir__}/../.."