1
0
Fork 0
mirror of https://github.com/thoughtbot/capybara-webkit synced 2023-03-27 23:22:28 -04:00

removes useless block

This commit is contained in:
Niklas Baumstark 2011-10-14 21:22:33 +02:00
parent f76bd7020f
commit ce198ab494

View file

@ -105,9 +105,7 @@ class Capybara::Driver::Webkit
end
def cookies
@cookie_jar ||= begin
CookieJar.new(browser)
end
@cookie_jar ||= CookieJar.new(browser)
end
private