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='), |