server/test/unittest_hook.py
changeset 5921 b3fcb004d0e1
parent 5890 141b935a38fc
child 6340 470d8e828fda
equal deleted inserted replaced
5920:6c0a7a881024 5921:b3fcb004d0e1
    62 
    62 
    63     @clean_session_ops
    63     @clean_session_ops
    64     def test_global_operation_order(self):
    64     def test_global_operation_order(self):
    65         session = self.session
    65         session = self.session
    66         op1 = integrity._DelayedDeleteOp(session)
    66         op1 = integrity._DelayedDeleteOp(session)
    67         op2 = syncschema.MemSchemaRDefDel(session)
    67         op2 = syncschema.RDefDelOp(session)
    68         # equivalent operation generated by op2 but replace it here by op3 so we
    68         # equivalent operation generated by op2 but replace it here by op3 so we
    69         # can check the result...
    69         # can check the result...
    70         op3 = syncschema.MemSchemaNotifyChanges(session)
    70         op3 = syncschema.MemSchemaNotifyChanges(session)
    71         op4 = integrity._DelayedDeleteOp(session)
    71         op4 = integrity._DelayedDeleteOp(session)
    72         op5 = integrity._CheckORelationOp(session)
    72         op5 = integrity._CheckORelationOp(session)