summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchrome/test/chromedriver/run_py_tests.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/test/chromedriver/run_py_tests.py b/chrome/test/chromedriver/run_py_tests.py
index 08e767b..c70fc38 100755
--- a/chrome/test/chromedriver/run_py_tests.py
+++ b/chrome/test/chromedriver/run_py_tests.py
@@ -341,9 +341,10 @@ class ChromeSwitchesCapabilitiesTest(unittest.TestCase):
"""
driver = chromedriver.ChromeDriver(_CHROMEDRIVER_LIB,
chrome_binary=_CHROME_BINARY,
- chrome_switches=['enable-benchmarking'])
+ chrome_switches=['enable-benchmarking',
+ 'enable-stats-table'])
result = driver.ExecuteScript('return chrome.benchmarking')
- self.assertIsNotNone(result)
+ self.assertNotEqual(None, result)
if __name__ == '__main__':