aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/irb/test_cmd.rb2
-rw-r--r--test/irb/test_workspace.rb1
2 files changed, 1 insertions, 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__}/../.."