Silence warnings on ruby 1.9 build

This commit is contained in:
Sarah Mei 2010-11-20 19:08:36 -08:00
parent ad6f6498ef
commit 92c508bb36

View file

@ -26,7 +26,7 @@ end
When /^(?:|I )press "([^"]*)"(?: within "([^"]*)")?$/ do |button, selector|
with_scope(selector) do
click_button(button)
silence_warnings { click_button(button) } # ruby 1.9 produces a warning about UTF8 from rack-util
end
end