[cros] Retail mode test should not attempt to skip OOBE

There's no OOBE to skip in retail mode.
This test broke when I switched on OOBE in test images.

R=rkc@chromium.org
BUG=
TEST=
NOTRY=true


Review URL: https://chromiumcodereview.appspot.com/10834041

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148923 0039d316-1c4b-4281-b951-d872f2087c98
parent 01638654
...@@ -15,6 +15,10 @@ class ChromeosRetailMode(policy_base.PolicyTestBase): ...@@ -15,6 +15,10 @@ class ChromeosRetailMode(policy_base.PolicyTestBase):
mode = 'kiosk' mode = 'kiosk'
machine_id = 'KIOSK' machine_id = 'KIOSK'
def ShouldOOBESkipToLogin(self):
# There's no OOBE to skip.
return False
def _CheckOnRetailModeLoginScreen(self): def _CheckOnRetailModeLoginScreen(self):
"""Checks that the retail mode login screen is visible.""" """Checks that the retail mode login screen is visible."""
return self.ExecuteJavascriptInOOBEWebUI( return self.ExecuteJavascriptInOOBEWebUI(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment