1
0
Fork 0
mirror of https://github.com/teamcapybara/capybara.git synced 2022-11-09 12:08:07 -05:00

Fixed typo

This commit is contained in:
Tietew 2019-12-16 17:11:57 +09:00
parent 57cae0c23a
commit 50a4f192b4
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ Capybara.add_selector(:checkbox, locator_type: [String, Symbol]) do
describe_node_filters do |option: nil, with: nil, **| describe_node_filters do |option: nil, with: nil, **|
desc = +'' desc = +''
desc << " with value #{option.inspect}" if option desc << " with value #{option.inspect}" if option
desc << " with value #{with.inspec}" if with desc << " with value #{with.inspect}" if with
desc desc
end end
end end

View file

@ -21,7 +21,7 @@ Capybara.add_selector(:radio_button, locator_type: [String, Symbol]) do
describe_node_filters do |option: nil, with: nil, **| describe_node_filters do |option: nil, with: nil, **|
desc = +'' desc = +''
desc << " with value #{option.inspect}" if option desc << " with value #{option.inspect}" if option
desc << " with value #{with.inspec}" if with desc << " with value #{with.inspect}" if with
desc desc
end end
end end