Mercurial > python-hglib
diff tests/test-outgoing-incoming.py @ 15:f1af31960414
client: change return value of commit() to (rev, node)
this is the original output hg emits with commit --debug
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Wed, 10 Aug 2011 19:59:08 +0300 |
parents | eac8be119d81 |
children | b4e5c8745ef3 |
line wrap: on
line diff
--- a/tests/test-outgoing-incoming.py Wed Aug 10 19:59:03 2011 +0300 +++ b/tests/test-outgoing-incoming.py Wed Aug 10 19:59:08 2011 +0300 @@ -15,10 +15,10 @@ self.assertEquals(self.client.outgoing(path='bar'), bar.incoming()) self.append('a', 'a') - rev = self.client.commit('third') + rev, node = self.client.commit('third') out = self.client.outgoing(path='bar') self.assertEquals(len(out), 1) - self.assertEquals(out[0], rev) + self.assertEquals(out[0].node, node) self.assertEquals(out, bar.incoming())