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

Unified Diff: tests/download_from_google_storage_unittests.py

Issue 86123002: Adds SSO auth to gsutil (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Added bypass support Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: tests/download_from_google_storage_unittests.py
diff --git a/tests/download_from_google_storage_unittests.py b/tests/download_from_google_storage_unittests.py
index 77dd40a67e8174c6d3daf0df8fe88be2fa054264..209b9a72057aa6ac08c65e93230bd17a2cd37e45 100755
--- a/tests/download_from_google_storage_unittests.py
+++ b/tests/download_from_google_storage_unittests.py
@@ -75,15 +75,6 @@ class GstoolsUnitTests(unittest.TestCase):
self.assertEqual(code, 0)
self.assertEqual(err, '')
- def test_gsutil_version(self):
- gsutil = download_from_google_storage.Gsutil(GSUTIL_DEFAULT_PATH, None)
- _, _, err = gsutil.check_call('version')
- err_lines = err.splitlines()
- self.assertEqual(err_lines[0], 'gsutil version 3.25')
- self.assertEqual(
- err_lines[1],
- 'checksum c9cffb512f467c0aa54880788b9ee6ca (OK)')
-
def test_get_sha1(self):
lorem_ipsum = os.path.join(self.base_path, 'lorem_ipsum.txt')
self.assertEqual(

Powered by Google App Engine
This is Rietveld 408576698