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

Unified Diff: tests/checkout_test.py

Issue 7054048: Increase coverage to 91%; Much stricter about header parsing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: tests/checkout_test.py
diff --git a/tests/checkout_test.py b/tests/checkout_test.py
index 5707c7be66704f70f7cc3ccb981e4ed23bb5b20f..b1a694e06283d997511b7f380524972f0fef6c05 100755
--- a/tests/checkout_test.py
+++ b/tests/checkout_test.py
@@ -151,7 +151,8 @@ class BaseTest(fake_repos.FakeReposTestBase):
return patch.PatchSet([
patch.FilePatchDiff(
'svn_utils_test.txt', GIT_PATCH, []),
- patch.FilePatchBinary('bin_file', '\x00', []),
+ # TODO(maruel): Test with is_new == False.
+ patch.FilePatchBinary('bin_file', '\x00', [], True),
Dirk Pranke 2011/06/03 19:17:27 Nit: can you change this to is_new=True just so it
M-A Ruel 2011/06/03 19:42:31 done
patch.FilePatchDelete('extra', False),
patch.FilePatchDiff('new_dir/subdir/new_file', PATCH_ADD, []),
])

Powered by Google App Engine
This is Rietveld 408576698