Skip to content

Commit

Permalink
Fix paths in library_symbols_test.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Aug 27, 2023
1 parent a17a373 commit b5fba6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/yarp/library_symbols_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ class LibrarySymbolsTest < Test::Unit::TestCase
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
Expand Down

0 comments on commit b5fba6d

Please sign in to comment.