mirror of
https://github.com/teamcapybara/capybara.git
synced 2022-11-09 12:08:07 -05:00
Fixed typo
This commit is contained in:
parent
57cae0c23a
commit
50a4f192b4
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue