Commit bc20967a authored by Łukasz Nowak's avatar Łukasz Nowak

Timestamp is sent as text.

parent deadf5ed
...@@ -3421,7 +3421,7 @@ class TestVifibSlapWebServiceMixin(testVifibMixin): ...@@ -3421,7 +3421,7 @@ class TestVifibSlapWebServiceMixin(testVifibMixin):
instance.getModificationDate()))) instance.getModificationDate())))
if (newtimestamp > timestamp): if (newtimestamp > timestamp):
timestamp = newtimestamp timestamp = newtimestamp
sequence['partition_timestamp'] = timestamp sequence['partition_timestamp'] = str(timestamp)
def stepCheckMinimalParametersTransmitted(self, sequence, **kw): def stepCheckMinimalParametersTransmitted(self, sequence, **kw):
""" """
......
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