Commit 1eab1c97 authored by Romain Courteaud's avatar Romain Courteaud

Prevent different tests to access the same documents

parent 9984876e
......@@ -1479,13 +1479,13 @@ class TestVifibSlapWebServiceMixin(testVifibMixin):
'publish_action')
def stepSelectYetAnotherRequestedReference(self, sequence, **kw):
sequence.edit(requested_reference='yet_another_requested_reference')
sequence.edit(requested_reference='yet_another_requested_reference' + str(random()))
def stepSelectAnotherRequestedReference(self, sequence, **kw):
sequence.edit(requested_reference='another_requested_reference')
sequence.edit(requested_reference='another_requested_reference' + str(random()))
def stepSelectAnotherRequestedSoftwareType(self, sequence, **kw):
sequence.edit(requested_software_type='another_requested_software_type')
sequence.edit(requested_software_type='another_requested_software_type' + str(random()))
def stepSelectRequestedReference(self, sequence, **kw):
sequence.edit(requested_reference='requested_reference')
......
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