aboutsummaryrefslogtreecommitdiff
path: root/crosperf/download_images_unittest.py
diff options
context:
space:
mode:
authorManoj Gupta <manojgupta@google.com>2017-01-09 14:52:51 -0800
committerChromeOS Commit Bot <chromeos-commit-bot@chromium.org>2017-01-11 20:56:45 +0000
commit3fb928efb42405e386da41adf4bd674e86e23022 (patch)
tree85fd5ec00c0f5131fef3e3b696a2b314f04007ea /crosperf/download_images_unittest.py
parent70204447c3c103508f1b8e58d59a9b8f165e1c21 (diff)
downloadtoolchain-utils-3fb928efb42405e386da41adf4bd674e86e23022.tar.gz
Fix test_that run for non-telemtry tests.
Do not add the autotest_dir argument to test_that for non-telemetry tests. Minor change: Remove a leftover print from download_images unit test. BUG: chromium:679001 TEST:crosperf unit tests Change-Id: I0ff5365902af40097b61ae57d7c0d8d43ea308a8 Reviewed-on: https://chromium-review.googlesource.com/426073 Reviewed-by: Caroline Tice <cmtice@chromium.org> Commit-Queue: Manoj Gupta <manojgupta@chromium.org> Tested-by: Manoj Gupta <manojgupta@chromium.org> Trybot-Ready: Manoj Gupta <manojgupta@chromium.org>
Diffstat (limited to 'crosperf/download_images_unittest.py')
-rwxr-xr-xcrosperf/download_images_unittest.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/crosperf/download_images_unittest.py b/crosperf/download_images_unittest.py
index 24a94a37..7a4f3850 100755
--- a/crosperf/download_images_unittest.py
+++ b/crosperf/download_images_unittest.py
@@ -116,7 +116,6 @@ class ImageDownloaderTestcast(unittest.TestCase):
# Verify RunCommand was called twice with correct arguments.
self.assertEqual(mock_cmd_exec.RunCommand.call_count, 2)
- print(mock_cmd_exec.RunCommand.call_args_list)
# Call 1, should have 2 arguments
self.assertEqual(len(mock_cmd_exec.RunCommand.call_args_list[0]), 2)
actual_arg = mock_cmd_exec.RunCommand.call_args_list[0][0]