From 2c2128f94b417142cdd629d0b80a30a4b2b1675c Mon Sep 17 00:00:00 2001 From: Sami Samhuri Date: Thu, 5 Oct 2023 14:40:30 -0700 Subject: [PATCH] Address a rubocop warning --- test/test_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index fc31137..3181809 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -3,4 +3,4 @@ $LOAD_PATH.unshift File.expand_path('../lib', __dir__) require 'wordexp' require 'minitest/autorun' -Dir[File.expand_path('support/**/*.rb', __dir__)].sort.each { |rb| require(rb) } +Dir[File.expand_path('support/**/*.rb', __dir__)].each { |rb| require(rb) }