Commit 8dcb5e9b authored by Vincent Pelletier's avatar Vincent Pelletier

Avoid error-over-error in test.

If start() fails here, it fail in the next test too (and any test until
stop gets called).
parent 1dcb885c
......@@ -228,8 +228,8 @@ class Test(NEOThreadedTest):
def testConflictResolutionTriggered2(self):
""" Check that conflict resolution works """
cluster = NEOCluster()
cluster.start()
try:
cluster.start()
# create the initial object
t, c = cluster.getTransaction()
c.root()['with_resolution'] = ob = PCounterWithResolution()
......
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