Skip to content

Commit

Permalink
Avoid require_relative in test_helper (#1880)
Browse files Browse the repository at this point in the history
Avoid require_relative in test_helper

Co-authored-by: Andy Waite <andyw8@users.noreply.github.com>
  • Loading branch information
andyw8 and andyw8 committed Apr 3, 2024
1 parent dbfc7ad commit e4b53c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
$LOAD_PATH.unshift(File.expand_path("../lib", __dir__))
$VERBOSE = nil unless ENV["VERBOSE"] || ENV["CI"]

require_relative "../lib/ruby_lsp/internal"
require_relative "../lib/ruby_lsp/test_helper"
require_relative "../lib/rubocop/cop/ruby_lsp/use_language_server_aliases"
require_relative "../lib/rubocop/cop/ruby_lsp/use_register_with_handler_method"
require "ruby_lsp/internal"
require "ruby_lsp/test_helper"
require "rubocop/cop/ruby_lsp/use_language_server_aliases"
require "rubocop/cop/ruby_lsp/use_register_with_handler_method"

require "minitest/autorun"
require "minitest/reporters"
Expand Down

0 comments on commit e4b53c1

Please sign in to comment.