summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorGilad Arnold <garnold@google.com>2015-07-07 10:19:24 -0700
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2015-07-08 00:19:06 +0000
commita7d74ca7a624da6854c894f60bea9df88fae869c (patch)
tree8ca79b2125e18a1e8421153b9fe9d4ed44e08bd8 /cli
parenta0a9806699f1524d0696614daad7fe691c7aff8f (diff)
downloadchromite-a7d74ca7a624da6854c894f60bea9df88fae869c.tar.gz
cros deploy/flash: Remove unnecessary qualifier from test names.
This is remnant from a time when errors were only propagated if --debug was used, which is no longer the case. BUG=None TEST=Unit tests Change-Id: If5c0c7b85133762c138bb559e2fc4ca313de9126 Reviewed-on: https://chromium-review.googlesource.com/283922 Reviewed-by: David Pursell <dpursell@chromium.org> Tested-by: Gilad Arnold <garnold@chromium.org> Commit-Queue: Gilad Arnold <garnold@chromium.org>
Diffstat (limited to 'cli')
-rw-r--r--cli/cros/cros_deploy_unittest.py2
-rw-r--r--cli/cros/cros_flash_unittest.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/cros/cros_deploy_unittest.py b/cli/cros/cros_deploy_unittest.py
index b0c988887..b06cd7c83 100644
--- a/cli/cros/cros_deploy_unittest.py
+++ b/cli/cros/cros_deploy_unittest.py
@@ -96,7 +96,7 @@ class CrosDeployTest(cros_test_lib.MockTempDirTestCase,
self.assertTrue(self.run_inside_chroot_mock.called)
self.VerifyDeployParameters(self.DEVICE, self.PACKAGES)
- def testDeployErrorDebug(self):
+ def testDeployError(self):
"""Tests that DeployErrors are passed through."""
with self.OutputCapturer():
self.SetupCommandMock([self.DEVICE] + self.PACKAGES)
diff --git a/cli/cros/cros_flash_unittest.py b/cli/cros/cros_flash_unittest.py
index 2dd1d2762..9e317deb3 100644
--- a/cli/cros/cros_flash_unittest.py
+++ b/cli/cros/cros_flash_unittest.py
@@ -140,7 +140,7 @@ class CrosFlashTest(cros_test_lib.MockTempDirTestCase,
self.VerifyFlashParameters(self.DEVICE, self.IMAGE,
brick_name='//bricks/foo')
- def testFlashErrorDebug(self):
+ def testFlashError(self):
"""Tests that FlashErrors are passed through."""
with self.OutputCapturer():
self.SetupCommandMock([self.DEVICE, self.IMAGE])