Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Updating comments
  • Loading branch information
bret committed Oct 31, 2008
1 parent e51e294 commit 53f45bd
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions watir/unittests/pagecontainstext_test.rb
Expand Up @@ -47,14 +47,16 @@ def test_bad_search_argument

class TC_contains_text_in_new_ie < Test::Unit::TestCase
tags :fails_on_firefox
# Doesn't actually raise an error, but fails to close the window afterwards
# http://jira.openqa.org/browse/WTR-265
def setup
@browser = Watir::Browser.new
@new_browser = Watir::Browser.new
end
def test_nothing_raised
assert_nothing_raised {@browser.text.include? ''}
assert_nothing_raised {@new_browser.text.include? ''}
end
def teardown
@browser.close
@new_browser.close
end
end

Expand Down

0 comments on commit 53f45bd

Please sign in to comment.