Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(266)

Side by Side Diff: client/site_tests/factory_Fail/factory_Fail.py

Issue 3438007: Replace newline characters in factory tests (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/autotest.git
Patch Set: Address review comments Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. 1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import logging 5 import logging
6 6
7 from autotest_lib.client.bin import test 7 from autotest_lib.client.bin import test
8 from autotest_lib.client.common_lib import error 8 from autotest_lib.client.bin import factory_error as error
9 9
10 class factory_Fail(test.test): 10 class factory_Fail(test.test):
11 version = 1 11 version = 1
12 12
13 def run_once(self): 13 def run_once(self):
14 # Stub test to report failure. 14 # Stub test to report failure.
15 raise error.TestFail("Factory suite has failed."); 15 raise error.TestFail("Factory suite has failed.");
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698