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, **|
desc = +''
desc << " with value #{option.inspect}" if option
desc << " with value #{with.inspec}" if with
desc << " with value #{with.inspect}" if with
desc
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, **|
desc = +''
desc << " with value #{option.inspect}" if option
desc << " with value #{with.inspec}" if with
desc << " with value #{with.inspect}" if with
desc
end
end