From 30fda411390a1712b440ce4a7382c9d756e5ef35 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA Date: Mon, 25 Nov 2024 08:16:53 +0900 Subject: [PATCH] Removed redundant argument at Reline::LineEditor::CompletionBlockTest --- test/reline/test_line_editor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/reline/test_line_editor.rb b/test/reline/test_line_editor.rb index cc4dc6d29a..3ed3fa956f 100644 --- a/test/reline/test_line_editor.rb +++ b/test/reline/test_line_editor.rb @@ -8,7 +8,7 @@ class Reline::LineEditor def setup @original_quote_characters = Reline.completer_quote_characters @original_word_break_characters = Reline.completer_word_break_characters - @line_editor = Reline::LineEditor.new(nil, Encoding::UTF_8) + @line_editor = Reline::LineEditor.new(nil) end def retrieve_completion_block(lines, line_index, byte_pointer)