test/test_parser.rb in cri-2.15.2 vs test/test_parser.rb in cri-2.15.3
- old
+ new
@@ -550,17 +550,17 @@
assert_equal('example.com', parser.gen_argument_list[:target])
end
def make_opt_defn(hash)
Cri::OptionDefinition.new(
- short: hash.fetch(:short, nil),
- long: hash.fetch(:long, nil),
- desc: hash.fetch(:desc, nil),
- argument: hash.fetch(:argument, nil),
- multiple: hash.fetch(:multiple, nil),
- block: hash.fetch(:block, nil),
- hidden: hash.fetch(:hidden, nil),
- default: hash.fetch(:default, nil),
+ short: hash.fetch(:short, nil),
+ long: hash.fetch(:long, nil),
+ desc: hash.fetch(:desc, nil),
+ argument: hash.fetch(:argument, nil),
+ multiple: hash.fetch(:multiple, nil),
+ block: hash.fetch(:block, nil),
+ hidden: hash.fetch(:hidden, nil),
+ default: hash.fetch(:default, nil),
transform: hash.fetch(:transform, nil),
)
end
end
end