This commit is contained in:
manga_osyo 2019-07-15 03:08:36 +09:00 коммит произвёл aycabta
Родитель f60e5a1f99
Коммит afed2668a6
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -6,8 +6,8 @@ class Reline::WithinPipeTest < Reline::TestCase
@reader, @writer = IO.pipe((RELINE_TEST_ENCODING rescue Encoding.default_external))
Reline.input = @reader
@output = Reline.output = File.open(IO::NULL, 'w')
@config = Reline.class_variable_get(:@@config)
@line_editor = Reline.class_variable_get(:@@line_editor)
@config = Reline.send(:core).config
@line_editor = Reline.send(:core).line_editor
end
def teardown