From d3b794097219789b0bad7e8ef5e44d4acb46831a Mon Sep 17 00:00:00 2001 From: tomoya ishida Date: Wed, 15 Nov 2023 15:04:55 +0900 Subject: [PATCH] require irb/version to test IRB::VERSION (#763) --- test/irb/type_completion/test_type_analyze.rb | 2 +- test/irb/type_completion/test_type_completor.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/test/irb/type_completion/test_type_analyze.rb b/test/irb/type_completion/test_type_analyze.rb index c417a8ad1..ac7a65c72 100644 --- a/test/irb/type_completion/test_type_analyze.rb +++ b/test/irb/type_completion/test_type_analyze.rb @@ -10,7 +10,7 @@ return end - +require 'irb/version' require 'irb/completion' require 'irb/type_completion/completor' require_relative '../helper' diff --git a/test/irb/type_completion/test_type_completor.rb b/test/irb/type_completion/test_type_completor.rb index eed400b3e..f947cc4e6 100644 --- a/test/irb/type_completion/test_type_completor.rb +++ b/test/irb/type_completion/test_type_completor.rb @@ -10,6 +10,7 @@ return end +require 'irb/version' require 'irb/type_completion/completor' require_relative '../helper'