summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
Diffstat (limited to 'chrome')
-rw-r--r--chrome/test/functional/extensions.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome/test/functional/extensions.py b/chrome/test/functional/extensions.py
index df46224..b5584d3 100644
--- a/chrome/test/functional/extensions.py
+++ b/chrome/test/functional/extensions.py
@@ -55,9 +55,10 @@ class ExtensionsTest(pyauto.PyUITest):
# Navigate to the top urls and verify there is still one window
for url in top_urls[:num_urls_to_visit]:
self.NavigateToURL(url)
- self.assertEqual(1, self.GetBrowserWindowCount(),
- 'Extensions in failing group: %s' %
- extensions[curr_extension:group_end])
+ # Assert that there is at least 1 browser window.
+ self.assertTrue(self.GetBrowserWindowCount(),
+ 'Extensions in failing group: %s' %
+ extensions[curr_extension:group_end])
curr_extension = group_end