Commit b66ba398 authored by Vincent Pelletier's avatar Vincent Pelletier

FIX Use a set of node rather than a set of cells.

git-svn-id: https://svn.erp5.org/repos/neo/trunk@2165 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 5e305f7a
...@@ -602,7 +602,7 @@ class ClientApplicationTests(NeoTestBase): ...@@ -602,7 +602,7 @@ class ClientApplicationTests(NeoTestBase):
'getCellListForOID': ReturnValues((cell1, ), (cell1, )), 'getCellListForOID': ReturnValues((cell1, ), (cell1, )),
'getCellListForTID': (cell1, cell2), 'getCellListForTID': (cell1, cell2),
}) })
app.cp = Mock({ 'getConnForCell': ReturnValues(conn1, conn2), }) app.cp = Mock({ 'getConnForNode': ReturnValues(conn1, conn2), })
# fake data # fake data
app.local_var.data_dict = {oid1: '', oid2: ''} app.local_var.data_dict = {oid1: '', oid2: ''}
app.tpc_abort(txn) app.tpc_abort(txn)
......
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