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

Unified Diff: tests/checkout_test.py

Issue 6015008: Make many operations quieter. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/commit-queue
Patch Set: Rebase against trunk Created 10 years 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
« no previous file with comments | « rietveld.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/checkout_test.py
diff --git a/tests/checkout_test.py b/tests/checkout_test.py
index cd92aec2082a73c3b0ff6c5eb6d528c2ca62f8a5..31c12755199bff8f241cddf3d269b80221b0ca69 100755
--- a/tests/checkout_test.py
+++ b/tests/checkout_test.py
@@ -205,6 +205,11 @@ class GitSvnCheckout(BaseTest):
content = read(os.path.join(self.root_dir, 'svn_utils_test.txt'))
self.assertTrue(os.path.join(self.root_dir, 'svn_utils_test.txt'))
co.apply_patch(patch.auto_mangle_git_patch(GIT_PATCH))
+ # Hackish to verify _branches() internal function.
+ # pylint: disable=W0212
+ self.assertEquals(
+ (['master', 'working_branch'], 'working_branch'),
+ co.checkout._branches())
content_lines = content.splitlines(True)
content_modified = ''.join(content_lines[0:5] + ['FOO!\n'] +
content_lines[5:])
« no previous file with comments | « rietveld.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698