summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraycabta <aycabta@gmail.com>2021-08-13 13:44:40 +0900
committeraycabta <aycabta@gmail.com>2021-08-14 22:13:31 +0900
commit2c056816c4e16117cc62b67fba74dfbd15d15ae9 (patch)
tree7f99624301c969cfbcf8af34ef04081a0d2dace1
parenta2f649374d7bd4a95040aabb08e1cb0144e227ce (diff)
[ruby/reline] Add workspace member for the latest IRB's implementation
https://github.com/ruby/reline/commit/8b55fc8fee
-rw-r--r--test/reline/yamatanooroti/termination_checker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/reline/yamatanooroti/termination_checker.rb b/test/reline/yamatanooroti/termination_checker.rb
index a36e075bde..9c2c3ae740 100644
--- a/test/reline/yamatanooroti/termination_checker.rb
+++ b/test/reline/yamatanooroti/termination_checker.rb
@@ -20,7 +20,7 @@ end
class AutoIndent < RubyLex
def initialize
set_input(self)
- context = Struct.new(:auto_indent_mode).new(true)
+ context = Struct.new(:auto_indent_mode, :workspace).new(true, nil)
set_auto_indent(context)
end