Skip to content

Commit

Permalink
Fix slash in file path
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom committed Mar 6, 2024
1 parent 689f664 commit f323f96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/test_runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run
Minitest::Test.use_order_dependent_tests!
Minitest::PrideIO.pride!

Dir.glob("#{input_path}/*_test.rb").sort.each do |test_file|
Dir.glob(File.join(input_path, "*_test.rb")).sort.each do |test_file|
reporter.set_metadata(test_file, ExtractMetadata.(test_file))

begin
Expand Down

0 comments on commit f323f96

Please sign in to comment.