diff options
| author | Benoit Daloze <eregontp@gmail.com> | 2026-01-17 13:36:20 +0100 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2026-01-23 15:03:49 +0900 |
| commit | aba48bd5d6a36328026e87e72a34897475d73145 (patch) | |
| tree | 7886561603ff62d78af83be883ae57fb3de28244 | |
| parent | 5b7b81a7b19225736cb62f34e2be83f27db46445 (diff) | |
[ruby/pathname] Remove omit's for File.path since it is fixed in the last TruffleRuby release
https://github.com/ruby/pathname/commit/97c97bc956
| -rw-r--r-- | test/pathname/test_pathname.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/pathname/test_pathname.rb b/test/pathname/test_pathname.rb index 1dc7f59adf..c5b19c8b18 100644 --- a/test/pathname/test_pathname.rb +++ b/test/pathname/test_pathname.rb @@ -498,13 +498,11 @@ class TestPathname < Test::Unit::TestCase 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 |
