Index: chrome/test/functional/chromeos_wifi.py |
diff --git a/chrome/test/functional/chromeos_wifi.py b/chrome/test/functional/chromeos_wifi.py |
index 012f540bcfa0e0eb3ee4c268ae62fa1985378ef2..00190033ab6c960e70eab91561db6c62f22c3780 100644 |
--- a/chrome/test/functional/chromeos_wifi.py |
+++ b/chrome/test/functional/chromeos_wifi.py |
@@ -22,6 +22,12 @@ class ChromeosWifi(chromeos_network.PyNetworkUITest): |
"""Basic check to ensure that a network scan doesn't throw errors.""" |
self.NetworkScan() |
+ def testGetProxySettings(self): |
+ """Print some information about proxy settings.""" |
+ result = self.GetProxySettingsOnChromeOS() |
+ self.assertTrue(result) |
+ logging.debug(result) |
+ |
if __name__ == '__main__': |
pyauto_functional.Main() |