Fix spec broken in previous commit

This commit is contained in:
Joe Fiorini 2011-11-15 21:09:55 -05:00
parent 741261c6d0
commit 24ccd1ffca
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ describe Capybara::Driver::Webkit::Browser do
new_browser = Capybara::Driver::Webkit::Browser.new(:stdout => io)
new_browser.execute_script('console.log("hello world")')
sleep(0.5)
io.string.should == "hello world\n"
io.string.should include "hello world\n"
end
context 'handling of SSL validation errors' do