From 97c97bc9569cf1ec611dc73fd0d672460893733b Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sat, 17 Jan 2026 13:36:20 +0100 Subject: [PATCH] Remove omit's for File.path since it is fixed in the last TruffleRuby release --- test/pathname/test_pathname.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index 1dc7f59..c5b19c8 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -498,13 +498,11 @@ def obj.to_str; "a/b"; end end def test_initialize_nul - omit "https://github.com/truffleruby/truffleruby/issues/4047" if RUBY_ENGINE == "truffleruby" assert_raise(ArgumentError) { Pathname.new("a\0") } end def test_initialize_encoding omit "https://github.com/jruby/jruby/issues/9120" if RUBY_ENGINE == "jruby" - omit "https://github.com/truffleruby/truffleruby/issues/4047" if RUBY_ENGINE == "truffleruby" assert_raise(Encoding::CompatibilityError) { Pathname.new("a".encode(Encoding::UTF_32BE)) } end