Chromium Code Reviews| 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, []), |
| ]) |