Mercurial > python-hglib
diff tests/test-annotate.py @ 134:1b47146a4a2c 1.4
style: fix long lines
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 30 Sep 2014 12:48:04 -0500 |
parents | 18f72b255553 |
children | 4359cabcb0cc |
line wrap: on
line diff
--- a/tests/test-annotate.py Tue Sep 30 11:23:15 2014 -0500 +++ b/tests/test-annotate.py Tue Sep 30 12:48:04 2014 -0500 @@ -7,9 +7,12 @@ self.append('a', 'a\n') rev, node1 = self.client.commit('second') - self.assertEquals(list(self.client.annotate('a')), [('0', 'a'), ('1', 'a')]) - self.assertEquals(list(self.client.annotate('a', user=True, file=True, - number=True, changeset=True, line=True, verbose=True)), + self.assertEquals(list(self.client.annotate('a')), [('0', + 'a'), ('1', 'a')]) + self.assertEquals(list( + self.client.annotate( + 'a', user=True, file=True, + number=True, changeset=True, line=True, verbose=True)), [('test 0 %s a:1' % node0[:12], 'a'), ('test 1 %s a:2' % node1[:12], 'a')])