Commit 59da54b7 authored by Grégory Wisniewski's avatar Grégory Wisniewski

Fix conflict included from previous commit, sorry.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@1966 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 051b0f7d
......@@ -839,22 +839,13 @@ class ClientApplicationTests(NeoTestBase):
tid1, tid2 = self.makeTID(1), self.makeTID(2)
object_history = ( (tid1, 42), (tid2, 42),)
# object history, first is a wrong oid, second is valid
<<<<<<< HEAD
p2 = Packets.AnswerObjectHistory(oid, object_history)
# transaction history
p3 = Packets.AnswerTransactionInformation(tid1, 'u', 'd', 'e',
False, (oid, ))
p4 = Packets.AnswerTransactionInformation(tid2, 'u', 'd', 'e',
False, (oid, ))
=======
p2 = Packets.AnswerObjectHistory('', oid, object_history)
extension = dumps({'k': 'v'})
# transaction history
p3 = Packets.AnswerTransactionInformation('export', tid1, 'u', 'd',
p3 = Packets.AnswerTransactionInformation(tid1, 'u', 'd',
extension, False, (oid, ))
p4 = Packets.AnswerTransactionInformation('export', tid2, 'u', 'd',
p4 = Packets.AnswerTransactionInformation(tid2, 'u', 'd',
extension, False, (oid, ))
>>>>>>> f540962... Insert extension's data in transaction informations returned to ZODB.
p2.setId(0)
p3.setId(1)
p4.setId(2)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment