From 412e586afe1efd137872610a9ed6e93a45cf4c08 Mon Sep 17 00:00:00 2001 From: Benoit Daloze Date: Sun, 27 Aug 2023 18:01:02 +0200 Subject: [PATCH] [ruby/yarp] Fix paths in library_symbols_test.rb https://github.com/ruby/yarp/commit/b5fba6d63f --- test/yarp/library_symbols_test.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/yarp/library_symbols_test.rb b/test/yarp/library_symbols_test.rb index c5927c2a89..9a52d189ba 100644 --- a/test/yarp/library_symbols_test.rb +++ b/test/yarp/library_symbols_test.rb @@ -11,9 +11,9 @@ if RUBY_PLATFORM =~ /linux/ def setup super - @librubyparser_a = File.expand_path(File.join(__dir__, "..", "build", "librubyparser.a")) - @librubyparser_so = File.expand_path(File.join(__dir__, "..", "build", "librubyparser.so")) - @yarp_so = File.expand_path(File.join(__dir__, "..", "lib", "yarp", "yarp.so")) + @librubyparser_a = File.expand_path("../../build/librubyparser.a", __dir__) + @librubyparser_so = File.expand_path("../../build/librubyparser.so", __dir__) + @yarp_so = File.expand_path("../../lib/yarp/yarp.so", __dir__) end # objdump runner and helpers