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

Unified Diff: tests/git_cl_test.py

Issue 23072039: Fix R= line rewriter to handle TBRs well. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 years, 4 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
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/git_cl_test.py
diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
index 270457d4a54a0f20669964a900ee1863ce3f1ec6..8b2fb58c01d0b7521444456637245bb0e47e9629 100755
--- a/tests/git_cl_test.py
+++ b/tests/git_cl_test.py
@@ -694,7 +694,7 @@ class TestGitCl(TestCase):
('foo', [], 'foo'),
('foo', ['a@c'], 'foo\n\nR=a@c'),
('foo\nBUG=', ['a@c'], 'foo\nBUG=\nR=a@c'),
- ('foo\nR=xx\nTBR=yy\nR=bar', ['a@c'], 'foo\nTBR=a@c'),
+ ('foo\nR=xx\nTBR=yy\nR=bar', ['a@c'], 'foo\nR=a@c, xx, bar\nTBR=yy'),
M-A Ruel 2013/08/23 15:22:53 Add a test with no R= line, only a TBR= line and a
agable 2013/08/23 18:43:00 To go along with the refactoring, I added a bunch
('foo', ['a@c', 'b@c'], 'foo\n\nR=a@c, b@c'),
('foo\nBar\n\nR=\nBUG=', ['c@c'], 'foo\nBar\n\nR=c@c\nBUG='),
('foo\nBar\n\nR=\nBUG=\nR=', ['c@c'], 'foo\nBar\n\nR=c@c\nBUG='),
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698