diff --git a/test/mri/excludes/TestIRB/LocaleTestCase.rb b/test/mri/excludes/TestIRB/LocaleTestCase.rb index 9db8f90e217..e69de29bb2d 100644 --- a/test/mri/excludes/TestIRB/LocaleTestCase.rb +++ b/test/mri/excludes/TestIRB/LocaleTestCase.rb @@ -1 +0,0 @@ -exclude :test_find, "Expected \"/b/b/e/main/mxbuild/truffleruby-native/lib/mri/irb/lc/ja/error.rb\" to include \"/lib/irb/lc/ja/error.rb\"." diff --git a/test/mri/tests/irb/test_locale.rb b/test/mri/tests/irb/test_locale.rb index 930a38834c1..66879e24fb8 100644 --- a/test/mri/tests/irb/test_locale.rb +++ b/test/mri/tests/irb/test_locale.rb @@ -108,11 +108,11 @@ def test_load def test_find jp_local = IRB::Locale.new("ja_JP.UTF-8") path = jp_local.find("irb/error.rb") - assert_include(path, "/lib/irb/lc/ja/error.rb") + assert_include(path, "/lib/mri/irb/lc/ja/error.rb") en_local = IRB::Locale.new("en_US.UTF-8") path = en_local.find("irb/error.rb") - assert_include(path, "/lib/irb/lc/error.rb") + assert_include(path, "/lib/mri/irb/lc/error.rb") end end end