Commit 769f4ef8 authored by Julien Muchembled's avatar Julien Muchembled

Fix random failure in ClientApplicationTests.test_store2

parent 224433cd
...@@ -113,7 +113,7 @@ class ClientApplicationTests(NeoUnitTestBase): ...@@ -113,7 +113,7 @@ class ClientApplicationTests(NeoUnitTestBase):
def makeOID(self, value=None): def makeOID(self, value=None):
from random import randint from random import randint
if value is None: if value is None:
value = randint(0, 255) value = randint(1, 255)
return '\00' * 7 + chr(value) return '\00' * 7 + chr(value)
makeTID = makeOID makeTID = makeOID
......
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