1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/irb] Fix argument order

https://github.com/ruby/irb/commit/05c65858a0
This commit is contained in:
Nobuyoshi Nakada 2021-09-17 19:56:28 +09:00 committed by git
parent 98c5907c65
commit 4576cdca73

View file

@ -75,7 +75,7 @@ module TestIRB
def test_complete_require_library_name_first
candidates = IRB::InputCompletor::CompletionProc.("'csv", "require ", "")
assert_equal candidates.first, "'csv"
assert_equal "'csv", candidates.first
end
def test_complete_require_relative