diff options
author | Peter Zhu <[email protected]> | 2022-10-26 11:12:32 -0400 |
---|---|---|
committer | git <[email protected]> | 2022-10-26 15:13:44 +0000 |
commit | 73a0223f952ef40d4986dde65eadb8f0b59521f2 (patch) | |
tree | 38be9696501db2a372d959b15757cbdb82453c31 | |
parent | cb95d834cc19a45a84d8d2c6d0f25d0c44e0d813 (diff) |
[ruby/irb] Rename test_helper.rb to helper.rb
The name test_helper.rb conflicts with the test_helper.rb in JSON,
causing build failures. This commit renames test_helper.rb to helper.rb.
https://github.com/ruby/irb/commit/b6a92bf6b3
Co-Authored-By: Stan Lo <[email protected]>
-rw-r--r-- | test/irb/helper.rb (renamed from test/irb/test_helper.rb) | 0 | ||||
-rw-r--r-- | test/irb/test_cmd.rb | 2 | ||||
-rw-r--r-- | test/irb/test_input_method.rb | 2 |
3 files changed, 2 insertions, 2 deletions
diff --git a/test/irb/test_helper.rb b/test/irb/helper.rb index 19c39a4a59..19c39a4a59 100644 --- a/test/irb/test_helper.rb +++ b/test/irb/helper.rb diff --git a/test/irb/test_cmd.rb b/test/irb/test_cmd.rb index 6ff2afc3e3..69830c061b 100644 --- a/test/irb/test_cmd.rb +++ b/test/irb/test_cmd.rb @@ -3,7 +3,7 @@ require "test/unit" require "irb" require "irb/extend-command" -require_relative "test_helper" +require_relative "helper" module TestIRB class ExtendCommand < Test::Unit::TestCase diff --git a/test/irb/test_input_method.rb b/test/irb/test_input_method.rb index 3618fa46f1..90d6bf5364 100644 --- a/test/irb/test_input_method.rb +++ b/test/irb/test_input_method.rb @@ -3,7 +3,7 @@ require "test/unit" require "irb" -require_relative "test_helper" +require_relative "helper" module TestIRB class TestRelineInputMethod < Test::Unit::TestCase |